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

Moving Beta to Live #72

Merged
merged 1 commit into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions BasicRotations/Magical/SMN_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ public enum SummonOrderType : byte
[RotationConfig(CombatType.PvE, Name = "Use Crimson Cyclone. Will use at any range, regardless of saftey use with caution.")]
public bool AddCrimsonCyclone { get; set; } = true;

[RotationConfig(CombatType.PvE, Name = "Use Bahamut no matter what whenever it's up lol don't wait")]
public bool AlwaysBaha { get; set; } = false;

[RotationConfig(CombatType.PvE, Name = "Use Swiftcast")]
public SwiftType AddSwiftcast { get; set; } = SwiftType.No;

Expand Down Expand Up @@ -94,6 +97,8 @@ protected override bool GeneralGCD(out IAction? act)
{
if (SummonCarbunclePvE.CanUse(out act)) return true;

if ((Player.HasStatus(false, StatusID.SearingLight) || SearingLightPvE.Cooldown.IsCoolingDown) && AlwaysBaha && SummonBahamutPvE.CanUse(out act)) return true;

if (SlipstreamPvE.CanUse(out act, skipAoeCheck: true)) return true;

if (CrimsonStrikePvE.CanUse(out act, skipAoeCheck: true)) return true;
Expand Down
159 changes: 0 additions & 159 deletions BasicRotations/Magical/SMN_zBeta.cs

This file was deleted.

7 changes: 6 additions & 1 deletion BasicRotations/Melee/DRG_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ public sealed class DRG_Default : DragoonRotation
{
#region Config Options
[RotationDesc(ActionID.SpineshatterDivePvE, ActionID.DragonfireDivePvE)]

[RotationConfig(CombatType.PvE, Name = "Break Single Target Combo to AOE when time to AOE")]
public bool DoomSpikeWhenever { get; set; } = true;
#endregion

#region Move Logic
Expand Down Expand Up @@ -83,9 +86,11 @@ protected override bool AttackAbility(IAction nextGCD, out IAction? act)
#region GCD Logic
protected override bool GeneralGCD(out IAction? act)
{
var doomSpikeRightNow = DoomSpikeWhenever;

if (CoerthanTormentPvE.CanUse(out act)) return true;
if (SonicThrustPvE.CanUse(out act)) return true;
if (DoomSpikePvE.CanUse(out act)) return true;
if (DoomSpikePvE.CanUse(out act, skipComboCheck: doomSpikeRightNow)) return true;


if (WheelingThrustPvE.CanUse(out act)) return true;
Expand Down
115 changes: 0 additions & 115 deletions BasicRotations/Melee/DRG_zBeta.cs

This file was deleted.

Loading