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

Commit

Permalink
Rearrange PCT options
Browse files Browse the repository at this point in the history
  • Loading branch information
Taurenkey committed Aug 22, 2024
1 parent 76de34a commit dc7a64d
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions XIVSlothCombo/Combos/CustomComboPreset.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2407,30 +2407,15 @@ public enum CustomComboPreset
#region PICTOMANCER

[ReplaceSkill(PCT.FireInRed)]
[ConflictingCombos(CombinedAetherhues)]
[ConflictingCombos(CombinedAetherhues, PCT_ST_AdvancedMode)]
[CustomComboInfo("Simple Mode - Single Target", "Consolidates the single target rotation into one button, ideal for newcomers.", PCT.JobID)]
PCT_ST_SimpleMode = 20000,

[ReplaceSkill(PCT.FireIIinRed)]
[ConflictingCombos(CombinedAetherhues)]
[ConflictingCombos(CombinedAetherhues, PCT_AoE_AdvancedMode)]
[CustomComboInfo("Simple Mode - AoE", "Consolidates the AoE rotation into one button, ideal for newcomers.", PCT.JobID)]
PCT_AoE_SimpleMode = 20001,

[ReplaceSkill(PCT.FireInRed, PCT.FireIIinRed)]
[ConflictingCombos(PCT_ST_SimpleMode, PCT_AoE_SimpleMode)]
[CustomComboInfo("Combined Aetherhues Feature", "Merges aetherhue actions for specific target types into a single button.", PCT.JobID)]
CombinedAetherhues = 20002,

[ReplaceSkill(PCT.CreatureMotif, PCT.WeaponMotif, PCT.LandscapeMotif)]
[CustomComboInfo("One Button Motifs", "Merges Motifs and Muses into a single button.", PCT.JobID)]
CombinedMotifs = 20003,

[ReplaceSkill(PCT.HolyInWhite)]
[CustomComboInfo("One Button Paint", "Consolidates paint-consuming actions into one button.", PCT.JobID)]
CombinedPaint = 20004,

#region ST

[ReplaceSkill(PCT.FireInRed)]
[ConflictingCombos(CombinedAetherhues, PCT_ST_SimpleMode)]
[CustomComboInfo("Advanced Mode - Single Target", $"Replaces Fire in Red with a one-button full single target rotation.\nThese features are ideal if you want to customize the rotation.", PCT.JobID)]
Expand Down Expand Up @@ -2670,6 +2655,23 @@ public enum CustomComboPreset
[CustomComboInfo("Lucid Dreaming Option", $"Adds Lucid Dreaming to the combo.", PCT.JobID)]
PCT_AoE_AdvancedMode_LucidDreaming = 20067,

[ReplaceSkill(PCT.FireInRed, PCT.FireIIinRed)]
[ConflictingCombos(PCT_ST_SimpleMode, PCT_AoE_SimpleMode)]
[CustomComboInfo("Combined Aetherhues Feature", "Merges aetherhue actions for specific target types into a single button.", PCT.JobID)]
CombinedAetherhues = 20002,

[ReplaceSkill(PCT.CreatureMotif, PCT.WeaponMotif, PCT.LandscapeMotif)]
[CustomComboInfo("One Button Motifs", "Merges Motifs and Muses into a single button.", PCT.JobID)]
CombinedMotifs = 20003,

[ReplaceSkill(PCT.HolyInWhite)]
[CustomComboInfo("One Button Paint", "Consolidates paint-consuming actions into one button.", PCT.JobID)]
CombinedPaint = 20004,

#region ST



// Last value for AoE = 20067
#endregion

Expand Down

0 comments on commit dc7a64d

Please sign in to comment.