@@ -1089,6 +1089,7 @@ local modTagList = {
10891089 [" per allocated mastery passive skill" ] = { tag = { type = " Multiplier" , var = " AllocatedMastery" } },
10901090 [" per allocated notable passive skill" ] = { tag = { type = " Multiplier" , var = " AllocatedNotable" } },
10911091 [" for each different type of mastery you have allocated" ] = { tag = { type = " Multiplier" , var = " AllocatedMasteryType" } },
1092+ [" per grand spectrum" ] = { tag = { type = " Multiplier" , var = " GrandSpectrum" } },
10921093 -- Per stat
10931094 [" per (%d+)%% of maximum mana they reserve" ] = function (num ) return { tag = { type = " PerStat" , stat = " ManaReservedPercent" , div = num } } end ,
10941095 [" per (%d+) strength" ] = function (num ) return { tag = { type = " PerStat" , stat = " Str" , div = num } } end ,
@@ -1134,7 +1135,7 @@ local modTagList = {
11341135 [" per endurance, frenzy or power charge" ] = { tag = { type = " PerStat" , stat = " TotalCharges" } },
11351136 [" per fortification" ] = { tag = { type = " PerStat" , stat = " FortificationStacks" } },
11361137 [" per totem" ] = { tag = { type = " PerStat" , stat = " TotemsSummoned" } },
1137- [" per summoned totem" ] = { tag = { type = " PerStat" , stat = " TotemsSummoned" } },
1138+ [" per summoned totem" ] = { tag = { type = " PerStat" , stat = " TotemsSummoned" } },
11381139 [" for each summoned totem" ] = { tag = { type = " PerStat" , stat = " TotemsSummoned" } },
11391140 [" for each time they have chained" ] = { tag = { type = " PerStat" , stat = " Chain" } },
11401141 [" for each time it has chained" ] = { tag = { type = " PerStat" , stat = " Chain" } },
@@ -3291,34 +3292,6 @@ local specialModList = {
32913292 [" only affects passives in large ring" ] = { mod (" JewelData" , " LIST" , { key = " radiusIndex" , value = 6 }) },
32923293 [" only affects passives in very large ring" ] = { mod (" JewelData" , " LIST" , { key = " radiusIndex" , value = 7 }) },
32933294 [" only affects passives in massive ring" ] = { mod (" JewelData" , " LIST" , { key = " radiusIndex" , value = 8 }) },
3294- [" (%d+)%% increased elemental damage per grand spectrum" ] = function (num ) return {
3295- mod (" ElementalDamage" , " INC" , num , { type = " Multiplier" , var = " GrandSpectrum" }),
3296- mod (" Multiplier:GrandSpectrum" , " BASE" , 1 ),
3297- } end ,
3298- [" gain (%d+) armour per grand spectrum" ] = function (num ) return {
3299- mod (" Armour" , " BASE" , num , { type = " Multiplier" , var = " GrandSpectrum" }),
3300- mod (" Multiplier:GrandSpectrum" , " BASE" , 1 ),
3301- } end ,
3302- [" +(%d+)%% to all elemental resistances per grand spectrum" ] = function (num ) return {
3303- mod (" ElementalResist" , " BASE" , num , { type = " Multiplier" , var = " GrandSpectrum" }),
3304- mod (" Multiplier:GrandSpectrum" , " BASE" , 1 )
3305- } end ,
3306- [" gain (%d+) mana per grand spectrum" ] = function (num ) return {
3307- mod (" Mana" , " BASE" , num , { type = " Multiplier" , var = " GrandSpectrum" }),
3308- mod (" Multiplier:GrandSpectrum" , " BASE" , 1 ),
3309- } end ,
3310- [" (%d+)%% increased critical strike chance per grand spectrum" ] = function (num ) return {
3311- mod (" CritChance" , " INC" , num , { type = " Multiplier" , var = " GrandSpectrum" }),
3312- mod (" Multiplier:GrandSpectrum" , " BASE" , 1 )
3313- } end ,
3314- [" %+(%d+) to minimum endurance charges per grand spectrum" ] = function (num ) return {
3315- mod (" EnduranceChargesMin" , " BASE" , num , { type = " Multiplier" , var = " GrandSpectrum" }),
3316- mod (" Multiplier:GrandSpectrum" , " BASE" , 1 )
3317- } end ,
3318- [" minions have %+(%d+)%% to critical strike multiplier per grand spectrum" ] = function (num ) return {
3319- mod (" MinionModifier" , " LIST" , { mod = mod (" CritMultiplier" , " BASE" , num , { type = " Multiplier" , actor = " parent" , var = " GrandSpectrum" }) }),
3320- mod (" Multiplier:GrandSpectrum" , " BASE" , 1 )
3321- } end ,
33223295 [" primordial" ] = { mod (" Multiplier:PrimordialItem" , " BASE" , 1 ) },
33233296 [" spectres have a base duration of (%d+) seconds" ] = function (num ) return { mod (" SkillData" , " LIST" , { key = " duration" , value = 6 }, { type = " SkillName" , skillName = " Raise Spectre" }) } end ,
33243297 [" flasks applied to you have (%d+)%% increased effect" ] = function (num ) return { mod (" FlaskEffect" , " INC" , num ) } end ,
0 commit comments