Skip to content

Commit

Permalink
More
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorm4 committed Oct 23, 2024
1 parent 2d0ffce commit 42592cb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ const aplTitle = (choice: MistweaverApl) => {
const RisingMistDescription = () => {
return (
<>
<SpellLink spell={talents.RISING_SUN_KICK_TALENT} /> to extend hots and{' '}
<SpellLink spell={talents.RISING_SUN_KICK_TALENT} />/
<SpellLink spell={talents.RUSHING_WIND_KICK_TALENT} /> to extend hots and{' '}
</>
);
};
Expand All @@ -42,6 +43,7 @@ const JadefireTeachingsDescription = () => {
return (
<>
to heal by using your damaging abilities (<SpellLink spell={talents.RISING_SUN_KICK_TALENT} />
/<SpellLink spell={talents.RUSHING_WIND_KICK_TALENT} />
, <SpellLink spell={SPELLS.BLACKOUT_KICK} />, and <SpellLink spell={SPELLS.TIGER_PALM} />) via{' '}
<SpellLink spell={talents.JADEFIRE_TEACHINGS_TALENT} />.
</>
Expand Down Expand Up @@ -80,7 +82,8 @@ const RisingMistJadefireTeachingsShaohaosDescription = () => {
<SpellLink spell={talents.JADEFIRE_TEACHINGS_TALENT} /> with{' '}
<SpellLink spell={talents.SHAOHAOS_LESSONS_TALENT} />, you cast{' '}
<SpellLink spell={talents.RENEWING_MIST_TALENT} /> and{' '}
<SpellLink spell={talents.RISING_SUN_KICK_TALENT} /> as often as possible, and cast{' '}
<SpellLink spell={talents.RISING_SUN_KICK_TALENT} />/
<SpellLink spell={talents.RUSHING_WIND_KICK_TALENT} /> as often as possible, and cast{' '}
<SpellLink spell={talents.JADEFIRE_STOMP_TALENT} /> as often as necessary to maintain the{' '}
<SpellLink spell={talents.JADEFIRE_TEACHINGS_TALENT} /> buff. <ShaohaosDescription />
<ThunderFocusTeaREM />
Expand Down Expand Up @@ -153,7 +156,8 @@ export default function AplChoiceDescription({
Mistweavers have a few different variations to their core rotation, depending on your talent
selection. The core of the rotations does not change with{' '}
<SpellLink spell={talents.RENEWING_MIST_TALENT} />,{' '}
<SpellLink spell={talents.RISING_SUN_KICK_TALENT} />, and{' '}
<SpellLink spell={talents.RISING_SUN_KICK_TALENT} />/
<SpellLink spell={talents.RUSHING_WIND_KICK_TALENT} />, and{' '}
<SpellLink spell={talents.THUNDER_FOCUS_TEA_TALENT} /> always being the top priority
abilities.
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import STATISTIC_CATEGORY from 'parser/ui/STATISTIC_CATEGORY';
import STATISTIC_ORDER from 'parser/ui/STATISTIC_ORDER';
import { TalentAggregateBarSpec } from 'parser/ui/TalentAggregateStatistic';
import SPELLS from 'common/SPELLS';
import { SPELL_COLORS } from '../../constants';
import { getCurrentRSKTalent, SPELL_COLORS } from '../../constants';
import TalentAggregateStatisticContainer from 'parser/ui/TalentAggregateStatisticContainer';
import ItemHealingDone from 'parser/ui/ItemHealingDone';
import { formatNumber } from 'common/format';
Expand Down Expand Up @@ -166,15 +166,15 @@ class RisingMistBreakdown extends Analyzer {
return (
<>
<SpellLink spell={talents.RISING_MIST_TALENT} /> direct healing from{' '}
<SpellLink spell={talents.RISING_SUN_KICK_TALENT} /> casts
<SpellLink spell={getCurrentRSKTalent(this.selectedCombatant)} /> casts
<ul>
<li>
{formatNumber(this.risingMist.averageHealing)} average healing per{' '}
<SpellLink spell={talents.RISING_SUN_KICK_TALENT} />
<SpellLink spell={getCurrentRSKTalent(this.selectedCombatant)} />
</li>
<li>
{this.risingMist.averageTargetsPerRSKCast()} average hits per{' '}
<SpellLink spell={talents.RISING_SUN_KICK_TALENT} />
<SpellLink spell={getCurrentRSKTalent(this.selectedCombatant)} />
</li>
</ul>
</>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class TimeBetweenRSKs extends Analyzer {
size="flexible"
category={STATISTIC_CATEGORY.GENERAL}
>
<TalentSpellText talent={TALENTS_MONK.RISING_SUN_KICK_TALENT}>
<TalentSpellText talent={getCurrentRSKTalent(this.selectedCombatant)}>
<>
{this.averageTimeBetweenRSKSeconds} <small>average time between casts</small>
</>
Expand Down

0 comments on commit 42592cb

Please sign in to comment.