Skip to content

Commit

Permalink
Add MajorDef to Devastation
Browse files Browse the repository at this point in the history
  • Loading branch information
Krealle committed Mar 22, 2024
1 parent 02fb9bc commit 9e616d9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/analysis/retail/evoker/devastation/CombatLogParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ import {
EssenceGraph,
SourceOfMagic,
PotentMana,
ObsidianScales,
DefensiveNormalizer,
DefensiveCastLinkNormalizer,
TwinGuardian,
RenewingBlaze,
} from 'analysis/retail/evoker/shared';

class CombatLogParser extends MainCombatLogParser {
Expand All @@ -52,6 +57,12 @@ class CombatLogParser extends MainCombatLogParser {
sourceOfMagic: SourceOfMagic,
potentMana: PotentMana,

obsidianScales: ObsidianScales,
defensiveCastLinkNormalizer: DefensiveCastLinkNormalizer,
defensiveNormalizer: DefensiveNormalizer,
twinGuardian: TwinGuardian,
renewingBlaze: RenewingBlaze,

// Core
abilities: Abilities,
buffs: Buffs,
Expand Down
2 changes: 2 additions & 0 deletions src/analysis/retail/evoker/devastation/Guide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { DamageEfficiency } from './modules/guide/DamageEfficiencySection';
import { EssenceGraphSection } from './modules/guide/EssenceGraphSection';
import { DragonRageSection } from './modules/guide/DragonRageSection';
import { IntroSection } from './modules/guide/IntroSection';
import MajorDefensives from '../shared/modules/MajorDefensives/DefensivesGuide';

export default function Guide({ modules, events, info }: GuideProps<typeof CombatLogParser>) {
return (
Expand All @@ -17,6 +18,7 @@ export default function Guide({ modules, events, info }: GuideProps<typeof Comba
<DragonRageSection modules={modules} info={info} events={events} />
<DamageEfficiency modules={modules} info={info} events={events} />
<CoreRotation modules={modules} info={info} events={events} />
<MajorDefensives />
<PreparationSection />
</>
);
Expand Down

0 comments on commit 9e616d9

Please sign in to comment.