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

Commit

Permalink
Merge pull request #178 from FFXIV-CombatReborn/IcWaDev
Browse files Browse the repository at this point in the history
Added RubyEmearldTopaz summon order
  • Loading branch information
IncognitoWater authored Aug 3, 2024
2 parents fe6c314 + c55fd69 commit c5e10f3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion BasicRotations/Magical/SMN_Default.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ public enum SummonOrderType : byte

[Description("Topaz-Ruby-Emerald")] TopazRubyEmerald,

[Description("Emerald-Topaz-Ruby")] EmeraldTopazRuby
[Description("Emerald-Topaz-Ruby")] EmeraldTopazRuby,

[Description("Ruby-Emerald-Topaz")] RubyEmeraldTopaz,
}

[RotationConfig(CombatType.PvE, Name = "Use Crimson Cyclone. Will use at any range, regardless of saftey use with caution.")]
Expand Down Expand Up @@ -155,6 +157,12 @@ protected override bool GeneralGCD(out IAction? act)
if (SummonTopazPvE.CanUse(out act)) return true;
if (SummonRubyPvE.CanUse(out act)) return true;
break;

case SummonOrderType.RubyEmeraldTopaz:
if (SummonRubyPvE.CanUse(out act)) return true;
if (SummonEmeraldPvE.CanUse(out act)) return true;
if (SummonTopazPvE.CanUse(out act)) return true;
break;
}
}

Expand Down

0 comments on commit c5e10f3

Please sign in to comment.