Skip to content

Commit

Permalink
Add Spirit of Zandalar (Fixes #188)
Browse files Browse the repository at this point in the history
  • Loading branch information
raethkcj committed Sep 30, 2024
1 parent cb08b36 commit 8804756
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 40 deletions.
20 changes: 10 additions & 10 deletions libs/StatLogic/StatLogic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,8 @@ StatLogic.StatModInfo = {
finalAdjust = 0,
},
["MOD_AGI"] = {
initialValue = 0,
finalAdjust = 1,
initialValue = 1,
finalAdjust = 0,
},
["MOD_AP"] = {
initialValue = 0,
Expand Down Expand Up @@ -407,8 +407,8 @@ StatLogic.StatModInfo = {
finalAdjust = 0,
},
["MOD_INT"] = {
initialValue = 0,
finalAdjust = 1,
initialValue = 1,
finalAdjust = 0,
},
["MOD_MANA"] = {
initialValue = 1,
Expand All @@ -435,16 +435,16 @@ StatLogic.StatModInfo = {
finalAdjust = 1,
},
["MOD_SPI"] = {
initialValue = 0,
finalAdjust = 1,
initialValue = 1,
finalAdjust = 0,
},
["MOD_STA"] = {
initialValue = 0,
finalAdjust = 1,
initialValue = 1,
finalAdjust = 0,
},
["MOD_STR"] = {
initialValue = 0,
finalAdjust = 1,
initialValue = 1,
finalAdjust = 0,
},
}

Expand Down
70 changes: 40 additions & 30 deletions libs/StatLogic/Vanilla_Logic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1453,22 +1453,24 @@ StatLogic.StatModTable["ALL"] = {
},
},
["MOD_STR"] = {
-- Blessing of Kings - Buff
-- Increases stats by 10%.
-- Buff: Blessing of Kings
{
["value"] = 0.1,
["aura"] = 20217,
["group"] = addon.ExclusiveGroup.AllStats,
},
-- Greater Blessing of Kings - Buff
-- Increases stats by 10%.
-- Buff: Greater Blessing of Kings
{
["value"] = 0.1,
["aura"] = 25898,
["group"] = addon.ExclusiveGroup.AllStats,
},
-- Heart of the Lion - Buff
-- Increases stats by 10%.
-- Buff: Spirit of Zandalar
{
["value"] = 0.15,
["aura"] = 24425,
},
-- Buff: Heart of the Lion
{
["value"] = 0.1,
["aura"] = 409583,
Expand All @@ -1483,22 +1485,24 @@ StatLogic.StatModTable["ALL"] = {
},
},
["MOD_AGI"] = {
-- Blessing of Kings - Buff
-- Increases stats by 10%.
-- Buff: Blessing of Kings
{
["value"] = 0.1,
["aura"] = 20217,
["group"] = addon.ExclusiveGroup.AllStats,
},
-- Greater Blessing of Kings - Buff
-- Increases stats by 10%.
-- Buff: Greater Blessing of Kings
{
["value"] = 0.1,
["aura"] = 25898,
["group"] = addon.ExclusiveGroup.AllStats,
},
-- Heart of the Lion - Buff
-- Increases stats by 10%.
-- Buff: Spirit of Zandalar
{
["value"] = 0.15,
["aura"] = 24425,
},
-- Buff: Heart of the Lion
{
["value"] = 0.1,
["aura"] = 409583,
Expand All @@ -1513,22 +1517,24 @@ StatLogic.StatModTable["ALL"] = {
},
},
["MOD_STA"] = {
-- Blessing of Kings - Buff
-- Increases stats by 10%.
-- Buff: Blessing of Kings
{
["value"] = 0.1,
["aura"] = 20217,
["group"] = addon.ExclusiveGroup.AllStats,
},
-- Greater Blessing of Kings - Buff
-- Increases stats by 10%.
-- Buff: Greater Blessing of Kings
{
["value"] = 0.1,
["aura"] = 25898,
["group"] = addon.ExclusiveGroup.AllStats,
},
-- Heart of the Lion - Buff
-- Increases stats by 10%.
-- Buff: Spirit of Zandalar
{
["value"] = 0.15,
["aura"] = 24425,
},
-- Buff: Heart of the Lion
{
["value"] = 0.1,
["aura"] = 409583,
Expand All @@ -1543,22 +1549,24 @@ StatLogic.StatModTable["ALL"] = {
},
},
["MOD_INT"] = {
-- Blessing of Kings - Buff
-- Increases stats by 10%.
-- Buff: Blessing of Kings
{
["value"] = 0.1,
["aura"] = 20217,
["group"] = addon.ExclusiveGroup.AllStats,
},
-- Greater Blessing of Kings - Buff
-- Increases stats by 10%.
-- Buff: Greater Blessing of Kings
{
["value"] = 0.1,
["aura"] = 25898,
["group"] = addon.ExclusiveGroup.AllStats,
},
-- Heart of the Lion - Buff
-- Increases stats by 10%.
-- Buff: Spirit of Zandalar
{
["value"] = 0.15,
["aura"] = 24425,
},
-- Buff: Heart of the Lion
{
["value"] = 0.1,
["aura"] = 409583,
Expand All @@ -1573,22 +1581,24 @@ StatLogic.StatModTable["ALL"] = {
},
},
["MOD_SPI"] = {
-- Blessing of Kings - Buff
-- Increases stats by 10%.
-- Buff: Blessing of Kings
{
["value"] = 0.1,
["aura"] = 20217,
["group"] = addon.ExclusiveGroup.AllStats,
},
-- Greater Blessing of Kings - Buff
-- Increases stats by 10%.
-- Buff: Greater Blessing of Kings
{
["value"] = 0.1,
["aura"] = 25898,
["group"] = addon.ExclusiveGroup.AllStats,
},
-- Heart of the Lion - Buff
-- Increases stats by 10%.
-- Buff: Spirit of Zandalar
{
["value"] = 0.15,
["aura"] = 24425,
},
-- Buff: Heart of the Lion
{
["value"] = 0.1,
["aura"] = 409583,
Expand Down

0 comments on commit 8804756

Please sign in to comment.