Skip to content

Commit

Permalink
Merge pull request WoWAnalyzer#6051 from Elitesparkle/master
Browse files Browse the repository at this point in the history
Fix Mana Cost for Shaman Spells and Talents
  • Loading branch information
trevorm4 authored May 9, 2023
2 parents 338937b + 72c61bb commit 7187da4
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 13 deletions.
4 changes: 4 additions & 0 deletions src/CONTRIBUTORS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2143,3 +2143,7 @@ export const Tenooki: Contributor = {
github: 'awiss',
discord: 'dubya#6711',
};
export const Elitesparkle: Contributor = {
nickname: 'Elitesparkle',
github: 'Elitesparkle',
};
3 changes: 2 additions & 1 deletion src/analysis/retail/shaman/restoration/CHANGELOG.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { change, date } from 'common/changelog';
import SPELLS from 'common/SPELLS';
import TALENTS from 'common/TALENTS/shaman';
import { Arlie, Fassbrause, niseko, Vetyst, Vohrr } from 'CONTRIBUTORS';
import { Arlie, Elitesparkle, Fassbrause, niseko, Vetyst, Vohrr } from 'CONTRIBUTORS';
import { SpellLink } from 'interface';

export default [
change(date(2023, 5, 8), <>Fix Mana Costs for Shaman Spells and Talents.</>, Elitesparkle),
change(date(2023, 5, 8), <><SpellLink spell={TALENTS.FLOW_OF_THE_TIDES_TALENT}/> fix to tally additional hit healing regardless of riptides being consumed.</>, Vohrr),
change(date(2023, 5, 4), <>Fixed bug with <SpellLink spell={TALENTS.EARTH_SHIELD_TALENT}/> uptime segments on the guide. Added <SpellLink spell={TALENTS.UNLEASH_LIFE_TALENT}/> cast entry row, reformatted <SpellLink spell={TALENTS.PRIMORDIAL_WAVE_TALENT}/> module for visual consistency</>, Vohrr),
change(date(2023, 5, 4), <>Add <SpellLink spell={TALENTS.EARTH_SHIELD_TALENT}/> uptime to core section of the Guide</>, Vohrr),
Expand Down
18 changes: 9 additions & 9 deletions src/common/SPELLS/shaman.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ const spells = spellIndexableList({
id: 77130,
name: 'Purify Spirit',
icon: 'ability_shaman_cleansespirit',
manaCost: 650,
manaCost: 3250,
},
EARTHBIND_TOTEM: {
id: 2484,
name: 'Earthbind Totem',
icon: 'spell_nature_strengthofearthtotem02',
manaCost: 250,
manaCost: 1250,
},
RESONANCE_TOTEM_HASTE: {
id: 262417,
Expand Down Expand Up @@ -73,19 +73,19 @@ const spells = spellIndexableList({
id: 192106,
name: 'Lightning Shield',
icon: 'spell_nature_lightningshield',
manaCost: 150,
manaCost: 750,
},
LIGHTNING_SHIELD_ELEMENTAL: {
id: 344174, // Appears to be the spellID used when lightning shield does damage as Elemental Spec
name: 'Lightning Shield',
icon: 'spell_nature_lightningshield',
manaCost: 150,
manaCost: 750,
},
PRIMAL_STRIKE: {
id: 73899,
name: 'Primal Strike',
icon: 'spell_shaman_primalstrike',
manaCost: 940,
manaCost: 4700,
},
ANCESTRAL_PROTECTION_BUFF: {
id: 207495,
Expand Down Expand Up @@ -164,7 +164,7 @@ const spells = spellIndexableList({
id: 188196,
name: 'Lightning Bolt',
icon: 'spell_nature_lightning',
manaCost: 100,
manaCost: 500,
},
LIGHTNING_BOLT_INSTANT: {
id: 214815,
Expand Down Expand Up @@ -477,13 +477,13 @@ const spells = spellIndexableList({
id: 2825,
name: 'Bloodlust',
icon: 'spell_nature_bloodlust',
manaCost: 2150,
manaCost: 1000,
},
HEROISM: {
id: 32182,
name: 'Heroism',
icon: 'ability_shaman_heroism',
manaCost: 2150,
manaCost: 1000,
},
REINCARNATION: {
id: 21169,
Expand Down Expand Up @@ -585,7 +585,7 @@ const spells = spellIndexableList({
id: 8004,
name: 'Healing Surge',
icon: 'spell_nature_healingway',
manaCost: 2400, // enh/ele cost is higher
manaCost: 12000, // enh/ele cost is higher
},
TIDAL_WAVES_BUFF: {
id: 53390,
Expand Down
6 changes: 3 additions & 3 deletions src/common/TALENTS/shaman.ts
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ const talents = createTalentList({
icon: 'spell_shaman_focusedstrikes',
maxRanks: 1,
entryIds: [101967],
manaCost: 10000,
manaCost: 8000,
},
GUARDIANS_CUDGEL_TALENT: {
id: 381819,
Expand Down Expand Up @@ -587,7 +587,7 @@ const talents = createTalentList({
icon: 'inv_spear_04',
maxRanks: 1,
entryIds: [101900],
manaCost: 4500,
manaCost: 4300,
},
HEALING_STREAM_TOTEM_SHARED_TALENT: {
id: 5394,
Expand Down Expand Up @@ -922,7 +922,7 @@ const talents = createTalentList({
icon: 'spell_nature_purge',
maxRanks: 1,
entryIds: [101968],
manaCost: 5000,
manaCost: 4000,
},
RAGING_MAELSTROM_TALENT: {
id: 384143,
Expand Down

0 comments on commit 7187da4

Please sign in to comment.