From 22f85949448c21dcb1751cc62fa2f523735ada06 Mon Sep 17 00:00:00 2001 From: Elitesparkle Date: Mon, 8 May 2023 12:16:21 +0200 Subject: [PATCH 1/6] Fix Mana Cost for Shaman Spells --- src/common/SPELLS/shaman.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/common/SPELLS/shaman.ts b/src/common/SPELLS/shaman.ts index df35f4e9338..95d57695393 100644 --- a/src/common/SPELLS/shaman.ts +++ b/src/common/SPELLS/shaman.ts @@ -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, @@ -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, @@ -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, @@ -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, @@ -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, From ceef41b62fc0fd641fae9f453dd07d16f5638b02 Mon Sep 17 00:00:00 2001 From: Elitesparkle Date: Mon, 8 May 2023 12:24:42 +0200 Subject: [PATCH 2/6] Fix Mana Cost for Shaman Talents --- src/common/TALENTS/shaman.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/TALENTS/shaman.ts b/src/common/TALENTS/shaman.ts index 60c21288afe..d7550974fd1 100644 --- a/src/common/TALENTS/shaman.ts +++ b/src/common/TALENTS/shaman.ts @@ -550,7 +550,7 @@ const talents = createTalentList({ icon: 'spell_shaman_focusedstrikes', maxRanks: 1, entryIds: [101967], - manaCost: 10000, + manaCost: 8000, }, GUARDIANS_CUDGEL_TALENT: { id: 381819, @@ -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, @@ -922,7 +922,7 @@ const talents = createTalentList({ icon: 'spell_nature_purge', maxRanks: 1, entryIds: [101968], - manaCost: 5000, + manaCost: 4000, }, RAGING_MAELSTROM_TALENT: { id: 384143, From 7cec6b4ed0f8612b092443217f65bcae36d665af Mon Sep 17 00:00:00 2001 From: Elitesparkle Date: Mon, 8 May 2023 16:10:01 +0200 Subject: [PATCH 3/6] Update CONTRIBUTORS.ts --- src/CONTRIBUTORS.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/CONTRIBUTORS.ts b/src/CONTRIBUTORS.ts index 3be919f23cb..5c1260b319e 100644 --- a/src/CONTRIBUTORS.ts +++ b/src/CONTRIBUTORS.ts @@ -2143,3 +2143,7 @@ export const Tenooki: Contributor = { github: 'awiss', discord: 'dubya#6711', }; +export const Elitesparkle: Contributor = { + nickname: 'Elitesparkle', + github: 'Elitesparkle', +}; From 5fb4f46e529ae41a2b648dcf5c519f48ca4323c8 Mon Sep 17 00:00:00 2001 From: Elitesparkle Date: Mon, 8 May 2023 16:42:19 +0200 Subject: [PATCH 4/6] Update CHANGELOG.tsx --- src/CHANGELOG.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/CHANGELOG.tsx b/src/CHANGELOG.tsx index bab09633553..bfbd6f279e7 100644 --- a/src/CHANGELOG.tsx +++ b/src/CHANGELOG.tsx @@ -17,12 +17,14 @@ import { Vireve, Pilsung, HerzBlutRaffy, - Abelito75 + Abelito75, + Elitesparkle } from 'CONTRIBUTORS'; import { ItemLink } from 'interface'; import SpellLink from 'interface/SpellLink'; export default [ + change(date(2023, 5, 8), 'Fix Mana Costs for Shaman Spells and Talents.', Elitesparkle), change(date(2023, 5, 5), 'Fix Playwright tests.', ToppleTheNun), change(date(2023, 5, 4), 'Add 10.1 patch.', ToppleTheNun), change(date(2023, 5, 2), 'Bumped game version to 10.1', emallson), From b0d9b73834af341c6fc2cd03bb5133c762fb9dce Mon Sep 17 00:00:00 2001 From: Elitesparkle Date: Tue, 9 May 2023 00:44:57 +0200 Subject: [PATCH 5/6] Update CHANGELOG.tsx --- src/CHANGELOG.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/CHANGELOG.tsx b/src/CHANGELOG.tsx index b93a12b76a0..033ea8f03f7 100644 --- a/src/CHANGELOG.tsx +++ b/src/CHANGELOG.tsx @@ -17,14 +17,12 @@ import { Vireve, Pilsung, HerzBlutRaffy, - Abelito75, - Elitesparkle + Abelito75 } from 'CONTRIBUTORS'; import { ItemLink } from 'interface'; import SpellLink from 'interface/SpellLink'; export default [ - change(date(2023, 5, 8), 'Fix Mana Costs for Shaman Spells and Talents.', Elitesparkle), change(date(2023, 5, 8), 'Update leech rating per 1% to 10.1 values', Putro), change(date(2023, 5, 5), 'Fix Playwright tests.', ToppleTheNun), change(date(2023, 5, 4), 'Add 10.1 patch.', ToppleTheNun), From d1ece37dce78ee63d5234811c6412540dd98eab3 Mon Sep 17 00:00:00 2001 From: Elitesparkle Date: Tue, 9 May 2023 00:47:47 +0200 Subject: [PATCH 6/6] Update CHANGELOG.tsx --- src/analysis/retail/shaman/restoration/CHANGELOG.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/analysis/retail/shaman/restoration/CHANGELOG.tsx b/src/analysis/retail/shaman/restoration/CHANGELOG.tsx index 270554f826d..6413f766dfa 100644 --- a/src/analysis/retail/shaman/restoration/CHANGELOG.tsx +++ b/src/analysis/retail/shaman/restoration/CHANGELOG.tsx @@ -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), <> fix to tally additional hit healing regardless of riptides being consumed., Vohrr), change(date(2023, 5, 4), <>Fixed bug with uptime segments on the guide. Added cast entry row, reformatted module for visual consistency, Vohrr), change(date(2023, 5, 4), <>Add uptime to core section of the Guide, Vohrr),