Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion src/Data/Uniques/Special/New.lua
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,17 @@ Iron Ring
League: Kalandra
Reflects your other Ring
Mirrored
]]
]],
[[
Kaom's Spirit
Titan Gauntlets
League: Kalandra
+(50-70) to Maximum Life
+(20-30)% to Fire Resistance
0.44% of Physical Attack Damage Leeched as Life
Life Recovery from Regeneration is not applied
Regenerate 1 Rage per second for every 100 Life Recovery per second from Regeneration
]],
-- Reworked

}
4 changes: 4 additions & 0 deletions src/Modules/CalcDefence.lua
Original file line number Diff line number Diff line change
Expand Up @@ -692,6 +692,10 @@ function calcs.defence(env, actor)
if modDB:Flag(nil, "UnaffectedByManaRegen") then --Chainbreaker Flag
output.WouldBeManaRegen = output.ManaRegen
output.ManaRegen = 0
end
if modDB:Flag(nil, "UnaffectedByLifeRegen") then --Kaom's Spirit
output.WouldBeLifeRegen = output.LifeRegen
output.LifeRegen = 0
end
if modDB:Sum("BASE", nil, "RageRegen") > 0 then
modDB:NewMod("Condition:CanGainRage", "FLAG", true, "RageRegen")
Expand Down
Loading