Skip to content

Commit 6f7c688

Browse files
authored
Add support for "Rupture The Soul" (Lich Ascendancy Notable) (#863)
Co-authored-by: majochem <majochem@users.noreply.github.com>
1 parent 241568f commit 6f7c688

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/Modules/ModParser.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2005,6 +2005,9 @@ local specialModList = {
20052005
["cursed enemies you or your minions kill have a (%d+)%% chance to explode, dealing a (.+) of their maximum life as (.+) damage"] = function(chance, _, amount, type) -- Profane Bloom
20062006
return explodeFunc(chance, amount, type, { type = "ActorCondition", actor = "enemy", var = "Cursed" })
20072007
end,
2008+
["cursed enemies killed by you or allies in your presence have a (%d+)%% chance to explode, dealing a (.+) of their maximum life as (.+) damage"] = function(chance, _, amount, type) -- Rupture The Soul (Lich Ascendancy)
2009+
return explodeFunc(chance, amount, type, { type = "ActorCondition", actor = "enemy", var = "Cursed" })
2010+
end,
20082011
["enemies you kill explode, dealing (%d+)%% of their life as (.+) damage"] = function(amount, _, type) -- legacy synth, legacy crusader
20092012
return explodeFunc(100, amount, type)
20102013
end,

0 commit comments

Comments
 (0)