Skip to content

Commit f1a6ca5

Browse files
kisiexLocalIdentity
andauthored
Added support for Chieftain's Ramako, Sun's Light notable (Ruthless version) (#8808)
* Added support for Chieftain's Ramako, Sun's Light notable * Add ModParser support --------- Co-authored-by: LocalIdentity <localidentity2@gmail.com>
1 parent 9e283b5 commit f1a6ca5

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
@@ -2406,6 +2406,9 @@ local specialModList = {
24062406
["(%d+)%% more damage for each endurance charge lost recently, up to (%d+)%%"] = function(num, _, limit) return {
24072407
mod("Damage", "MORE", num, { type = "Multiplier", var = "EnduranceChargesLostRecently", limit = tonumber(limit), limitTotal = true }),
24082408
} end,
2409+
["nearby enemy monsters have no fire resistance against damage over time while you are stationary"] = {
2410+
mod("EnemyModifier", "LIST", { mod = mod("FireResist", "OVERRIDE", 0, nil, ModFlag.Dot, { type = "ActorCondition", actor = "player", var = "Stationary" }) }),
2411+
},
24092412
["(%d+)%% more damage if you've lost an endurance charge in the past 8 seconds"] = function(num) return { mod("Damage", "MORE", num, { type = "Condition", var = "LostEnduranceChargeInPast8Sec" }) } end,
24102413
["trigger level (%d+) (.+) when you attack with a non%-vaal slam or strike skill near an enemy"] = function(num, _, skill) return triggerExtraSkill(skill, num) end,
24112414
["non%-unique jewels cause increases and reductions to other damage types in a (%a+) radius to be transformed to apply to (%a+) damage"] = function(_, radius, dmgType) return {

0 commit comments

Comments
 (0)