Skip to content

Commit

Permalink
adjust Arms GCDs to ignore haste
Browse files Browse the repository at this point in the history
  • Loading branch information
emallson committed Nov 2, 2024
1 parent 0b63a15 commit 824ddd9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions src/analysis/classic/warrior/arms/modules/features/Abilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Abilities extends CoreAbilities {
{
spell: SPELLS.REND.id,
category: SPELL_CATEGORY.ROTATIONAL,
gcd: { base: 1500 },
gcd: { static: 1500 },
},
{
spell: SPELLS.HEROIC_STRIKE.id,
Expand All @@ -28,24 +28,24 @@ class Abilities extends CoreAbilities {
{
spell: SPELLS.MORTAL_STRIKE.id,
category: SPELL_CATEGORY.ROTATIONAL,
gcd: { base: 1500 },
gcd: { static: 1500 },
cooldown: 4.5,
},
{
spell: SPELLS.SLAM.id,
category: SPELL_CATEGORY.ROTATIONAL,
gcd: { base: 1500 },
gcd: { static: 1500 },
},
{
spell: SPELLS.COLOSSUS_SMASH.id,
category: SPELL_CATEGORY.ROTATIONAL,
gcd: { base: 1500 },
gcd: { static: 1500 },
cooldown: 20,
},
{
spell: SPELLS.WHIRLWIND.id,
category: SPELL_CATEGORY.ROTATIONAL_AOE,
gcd: { base: 1500 },
gcd: { static: 1500 },
},
// Execute and Overpower are handled in separate modules
// Rotational AOE
Expand Down
2 changes: 1 addition & 1 deletion src/analysis/classic/warrior/shared/Execute.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default class Execute extends ExecuteHelper.withDependencies({ abilities:
this.deps.abilities.add({
spell: SPELLS.EXECUTE.id,
category: SPELL_CATEGORY.ROTATIONAL,
gcd: { base: 1500 },
gcd: { static: 1500 },
});
}
}
2 changes: 1 addition & 1 deletion src/analysis/classic/warrior/shared/Overpower.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default class Overpower extends ExecuteHelper.withDependencies({ abilitie
this.deps.abilities.add({
spell: SPELLS.OVERPOWER.id,
category: SPELL_CATEGORY.ROTATIONAL,
gcd: { base: 1500 },
gcd: { static: 1500 },
castEfficiency: {
suggestion: false,
maxCasts: () => this.maxCasts,
Expand Down

0 comments on commit 824ddd9

Please sign in to comment.