├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── non-bug-non-request-issues.md └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── XIVComboExpanded.sln ├── XIVComboExpanded ├── Attributes │ ├── AccessibilityCustomComboAttribute.cs │ ├── ConflictingCombosAttribute.cs │ ├── CustomComboInfoAttribute.cs │ ├── ExpandedCustomComboAttribute.cs │ ├── IconsComboAttribute.cs │ ├── ParentComboAttribute.cs │ ├── SecretCustomComboAttribute.cs │ └── SectionComboAttribute.cs ├── Combos │ ├── ADV.cs │ ├── AST.cs │ ├── BLM.cs │ ├── BLU.cs │ ├── BRD.cs │ ├── DNC.cs │ ├── DOH.cs │ ├── DOL.cs │ ├── DRG.cs │ ├── DRK.cs │ ├── GNB.cs │ ├── MCH.cs │ ├── MNK.cs │ ├── NIN.cs │ ├── PCT.cs │ ├── PLD.cs │ ├── RDM.cs │ ├── RPR.cs │ ├── SAM.cs │ ├── SCH.cs │ ├── SGE.cs │ ├── SMN.cs │ ├── VPR.cs │ ├── WAR.cs │ └── WHM.cs ├── CooldownData.cs ├── CustomCombo.cs ├── CustomComboCache.cs ├── CustomComboPreset.cs ├── GlobalSuppressions.cs ├── IconReplacer.cs ├── Interface │ ├── Changelog.cs │ ├── ConfigWindow.cs │ └── OneTimeModal.cs ├── PluginAddressResolver.cs ├── PluginConfiguration.cs ├── Service.cs ├── XIVComboExpanded.csproj ├── XIVComboExpanded.json ├── XIVComboExpandedPlugin.cs └── packages.lock.json ├── res ├── eno_swap.gif ├── hypercharge_heat_blast.gif ├── icon.png └── souleater_combo.gif └── stylecop.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/non-bug-non-request-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/.github/ISSUE_TEMPLATE/non-bug-non-request-issues.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | bin/ 3 | obj/ 4 | /lib/ 5 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/README.md -------------------------------------------------------------------------------- /XIVComboExpanded.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded.sln -------------------------------------------------------------------------------- /XIVComboExpanded/Attributes/AccessibilityCustomComboAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Attributes/AccessibilityCustomComboAttribute.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Attributes/ConflictingCombosAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Attributes/ConflictingCombosAttribute.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Attributes/CustomComboInfoAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Attributes/CustomComboInfoAttribute.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Attributes/ExpandedCustomComboAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Attributes/ExpandedCustomComboAttribute.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Attributes/IconsComboAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Attributes/IconsComboAttribute.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Attributes/ParentComboAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Attributes/ParentComboAttribute.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Attributes/SecretCustomComboAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Attributes/SecretCustomComboAttribute.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Attributes/SectionComboAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Attributes/SectionComboAttribute.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/ADV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/ADV.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/AST.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/AST.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/BLM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/BLM.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/BLU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/BLU.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/BRD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/BRD.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/DNC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/DNC.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/DOH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/DOH.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/DOL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/DOL.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/DRG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/DRG.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/DRK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/DRK.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/GNB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/GNB.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/MCH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/MCH.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/MNK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/MNK.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/NIN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/NIN.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/PCT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/PCT.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/PLD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/PLD.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/RDM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/RDM.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/RPR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/RPR.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/SAM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/SAM.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/SCH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/SCH.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/SGE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/SGE.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/SMN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/SMN.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/VPR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/VPR.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/WAR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/WAR.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Combos/WHM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Combos/WHM.cs -------------------------------------------------------------------------------- /XIVComboExpanded/CooldownData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/CooldownData.cs -------------------------------------------------------------------------------- /XIVComboExpanded/CustomCombo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/CustomCombo.cs -------------------------------------------------------------------------------- /XIVComboExpanded/CustomComboCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/CustomComboCache.cs -------------------------------------------------------------------------------- /XIVComboExpanded/CustomComboPreset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/CustomComboPreset.cs -------------------------------------------------------------------------------- /XIVComboExpanded/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/GlobalSuppressions.cs -------------------------------------------------------------------------------- /XIVComboExpanded/IconReplacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/IconReplacer.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Interface/Changelog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Interface/Changelog.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Interface/ConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Interface/ConfigWindow.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Interface/OneTimeModal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Interface/OneTimeModal.cs -------------------------------------------------------------------------------- /XIVComboExpanded/PluginAddressResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/PluginAddressResolver.cs -------------------------------------------------------------------------------- /XIVComboExpanded/PluginConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/PluginConfiguration.cs -------------------------------------------------------------------------------- /XIVComboExpanded/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/Service.cs -------------------------------------------------------------------------------- /XIVComboExpanded/XIVComboExpanded.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/XIVComboExpanded.csproj -------------------------------------------------------------------------------- /XIVComboExpanded/XIVComboExpanded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/XIVComboExpanded.json -------------------------------------------------------------------------------- /XIVComboExpanded/XIVComboExpandedPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/XIVComboExpandedPlugin.cs -------------------------------------------------------------------------------- /XIVComboExpanded/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/XIVComboExpanded/packages.lock.json -------------------------------------------------------------------------------- /res/eno_swap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/res/eno_swap.gif -------------------------------------------------------------------------------- /res/hypercharge_heat_blast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/res/hypercharge_heat_blast.gif -------------------------------------------------------------------------------- /res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/res/icon.png -------------------------------------------------------------------------------- /res/souleater_combo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/res/souleater_combo.gif -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MKhayle/XIVComboExpanded/HEAD/stylecop.json --------------------------------------------------------------------------------