@@ -494,6 +494,7 @@ local modNameList = {
494494 [" melee weapon and unarmed attack range" ] = { " MeleeWeaponRange" , " UnarmedRange" },
495495 [" melee strike range" ] = { " MeleeWeaponRange" , " UnarmedRange" },
496496 [" to deal double damage" ] = " DoubleDamageChance" ,
497+ [" to deal triple damage" ] = " TripleDamageChance" ,
497498 -- Buffs
498499 [" onslaught effect" ] = " OnslaughtEffect" ,
499500 [" adrenaline duration" ] = " AdrenalineDuration" ,
@@ -3499,7 +3500,6 @@ local specialModList = {
34993500 } end ,
35003501 [" herald of thunder's storms hit enemies with (%d+)%% increased frequency" ] = function (num ) return { mod (" HeraldStormFrequency" , " INC" , num ), } end ,
35013502 [" your critical strikes have a (%d+)%% chance to deal double damage" ] = function (num ) return { mod (" DoubleDamageChanceOnCrit" , " BASE" , num ) } end ,
3502- [" (%d+)%% chance to deal triple damage" ] = function (num ) return { mod (" TripleDamageChance" , " BASE" , num ) } end ,
35033503 [" elemental skills deal triple damage" ] = { mod (" TripleDamageChance" , " BASE" , 100 , { type = " SkillType" , skillTypeList = { SkillType .Cold , SkillType .Fire , SkillType .Lightning } } ), },
35043504 [" deal triple damage with elemental skills" ] = { mod (" TripleDamageChance" , " BASE" , 100 , { type = " SkillType" , skillTypeList = { SkillType .Cold , SkillType .Fire , SkillType .Lightning } } ), },
35053505 [" skills supported by unleash have %+(%d) to maximum number of seals" ] = function (num ) return { mod (" SealCount" , " BASE" , num ) } end ,
0 commit comments