Skip to content

Commit aa6ce9d

Browse files
author
LocalIdentity
committed
Leave legacy mod parsing
1 parent 7654303 commit aa6ce9d

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

src/Data/ModCache.lua

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2585,8 +2585,7 @@ c["40% increased Stun Buildup Adds 11 to 20 Physical Damage to Attacks"]={{[1]={
25852585
c["40% increased Stun Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=40}},nil}
25862586
c["40% increased Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="StunThreshold",type="INC",value=40}},nil}
25872587
c["40% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=40}},nil}
2588-
c["40% increased chance to Ignite"]={{}," chance to Ignite "}
2589-
c["40% increased chance to Ignite Minions have +15% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="INC",value=40}}}}," chance to Ignite s have +15% to "}
2588+
c["40% increased chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="INC",value=40}},nil}
25902589
c["40% increased chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="INC",value=40}},nil}
25912590
c["40% increased effect of Arcane Surge on you"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=40}},nil}
25922591
c["40% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil}

src/Modules/ModParser.lua

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -712,6 +712,10 @@ local modNameList = {
712712
["to freeze"] = "EnemyFreezeChance",
713713
["freeze chance"] = "EnemyFreezeChance",
714714
["chance to freeze"] = "EnemyFreezeChance",
715+
["to ignite"] = "EnemyIgniteChance",
716+
["ignite chance"] = "EnemyIgniteChance",
717+
["chance to ignite"] = "EnemyIgniteChance",
718+
["to freeze, shock and ignite"] = { "EnemyFreezeChance", "EnemyShockChance", "EnemyIgniteChance" },
715719
["flammability magnitude"] = "EnemyIgniteChance",
716720
["magnitude of shock you inflict"] = "EnemyShockMagnitude",
717721
["magnitude of chill you inflict"] = "EnemyChillMagnitude",
@@ -3707,6 +3711,12 @@ local specialModList = {
37073711
flag("ColdCanPoison"),
37083712
flag("LightningCanPoison"),
37093713
},
3714+
["all damage from you and allies in your presence contributes to ignite chance and magnitude"] = {
3715+
mod("ExtraAura", "LIST", { mod = flag("ColdCanIgnite") }),
3716+
mod("ExtraAura", "LIST", { mod = flag("LightningCanIgnite") }),
3717+
mod("ExtraAura", "LIST", { mod = flag("ChaosCanIgnite") }),
3718+
mod("ExtraAura", "LIST", { mod = flag("PhysicalCanIgnite") }),
3719+
},
37103720
["all damage from you and allies in your presence contributes to flammability and ignite magnitudes"] = {
37113721
mod("ExtraAura", "LIST", { mod = flag("ColdCanIgnite") }),
37123722
mod("ExtraAura", "LIST", { mod = flag("LightningCanIgnite") }),

0 commit comments

Comments
 (0)