Skip to content

Commit

Permalink
Add SoD P3 World Buff
Browse files Browse the repository at this point in the history
  • Loading branch information
raethkcj committed Mar 28, 2024
1 parent 4b53363 commit c3d8406
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
2 changes: 1 addition & 1 deletion libs/StatLogic/StatLogic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ StatLogic.StatModInfo = {
-- only add mods that would reasonably be active while leveling, which are primarily talents.
-- The crit conversions are also only necessary in Vanilla, while Dodge is necessary in every expansion.
-- Spell crit modifiers are only required if they mod school 1 (physical)
-- That means spells with EffectAura 57, and, separately, EffectAura 71 whose final digit of EffectMiscValue_0 is an odd number
-- That means spells with EffectAura 57 or 290, and, separately, EffectAura 71 or 552 whose final digit of EffectMiscValue_0 is an odd number
["ADD_MELEE_CRIT"] = {
initialValue = 0,
finalAdjust = 0,
Expand Down
42 changes: 42 additions & 0 deletions libs/StatLogic/Vanilla_Logic.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1660,6 +1660,12 @@ StatLogic.StatModTable["ALL"] = {
["group"] = addon.BuffGroup.AllStats,
["rune"] = true,
},
-- Buff: Fervor of the Temple Explorer
{
["aura"] = 446695,
["rune"] = true,
["value"] = 0.08,
},
},
["MOD_AGI"] = {
-- Blessing of Kings - Buff
Expand All @@ -1684,6 +1690,12 @@ StatLogic.StatModTable["ALL"] = {
["group"] = addon.BuffGroup.AllStats,
["rune"] = true,
},
-- Buff: Fervor of the Temple Explorer
{
["aura"] = 446695,
["rune"] = true,
["value"] = 0.08,
},
},
["MOD_STA"] = {
-- Blessing of Kings - Buff
Expand All @@ -1708,6 +1720,12 @@ StatLogic.StatModTable["ALL"] = {
["group"] = addon.BuffGroup.AllStats,
["rune"] = true,
},
-- Buff: Fervor of the Temple Explorer
{
["aura"] = 446695,
["rune"] = true,
["value"] = 0.08,
},
},
["MOD_INT"] = {
-- Blessing of Kings - Buff
Expand All @@ -1732,6 +1750,12 @@ StatLogic.StatModTable["ALL"] = {
["group"] = addon.BuffGroup.AllStats,
["rune"] = true,
},
-- Buff: Fervor of the Temple Explorer
{
["aura"] = 446695,
["rune"] = true,
["value"] = 0.08,
},
},
["MOD_SPI"] = {
-- Blessing of Kings - Buff
Expand All @@ -1756,6 +1780,12 @@ StatLogic.StatModTable["ALL"] = {
["group"] = addon.BuffGroup.AllStats,
["rune"] = true,
},
-- Buff: Fervor of the Temple Explorer
{
["aura"] = 446695,
["rune"] = true,
["value"] = 0.08,
},
},
["MOD_HEALTH"] = {
-- Rune: Rallying Cry
Expand Down Expand Up @@ -1796,6 +1826,12 @@ StatLogic.StatModTable["ALL"] = {
["aura"] = 430947,
["value"] = 2,
},
-- Buff: Fervor of the Temple Explorer
{
["aura"] = 446695,
["rune"] = true,
["value"] = 5,
},
-- Set: Blood Tiger Harness
{
["set"] = 442,
Expand Down Expand Up @@ -1912,6 +1948,12 @@ StatLogic.StatModTable["ALL"] = {
["aura"] = 438536,
["value"] = 4,
},
-- Buff: Fervor of the Temple Explorer
{
["aura"] = 446695,
["rune"] = true,
["value"] = 5,
},
},
["ADD_DODGE"] = {
-- Set: Overlord's Resolution
Expand Down

0 comments on commit c3d8406

Please sign in to comment.