You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Modules/ModParser.lua
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2596,8 +2596,7 @@ local specialModList = {
2596
2596
["(%d+)%% chance to inflict withered for (%d+) seconds on hit with this weapon"] = { flag("Condition:CanWither") },
2597
2597
["(%d+)%% chance to inflict withered for two seconds on hit if there are (%d+) or fewer withered debuffs on enemy"] = { flag("Condition:CanWither") },
2598
2598
["inflict withered for (%d+) seconds on hit with this weapon"] = { flag("Condition:CanWither") },
2599
-
["enemies take (%d+)%% increased elemental damage from your hits for"] = { flag("Condition:CanElementalWithered") },
2600
-
["each withered you have inflicted on them"] = { },
2599
+
["enemies take (%d+)%% increased elemental damage from your hits for each withered you have inflicted on them"] =function(num) return { mod("EnemyModifier", "LIST", { mod=mod("ElementalDamageTaken", "INC", num, { type="Multiplier", var="WitheredStack" }) }) } end,
0 commit comments