Skip to content
Snippets Groups Projects
Commit 6dc0f627 authored by DarkGod's avatar DarkGod
Browse files

Magic of the Eternals correctly increases all crits (including Embers of Rage's Steamcrit)

parent 5fbbd0c1
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -223,4 +223,4 @@ newTalent{
When your Shadow Dance ends, you must make a stealth check against targets in radius %d%s or be revealed.]]):
format(t.getDuration(self, t), radius, xs)
end,
}
\ No newline at end of file
}
......@@ -168,9 +168,7 @@ newTalent{
critChance = function(self, t) return self:combatTalentScale(t, 3, 10, 0.75) end,
critPower = function(self, t) return self:combatTalentScale(t, 5, 20, 0.75) end,
passives = function(self, t, p)
self:talentTemporaryValue(p, "combat_physcrit", t.critChance(self, t))
self:talentTemporaryValue(p, "combat_spellcrit", t.critChance(self, t))
self:talentTemporaryValue(p, "combat_mindcrit", t.critChance(self, t))
self:talentTemporaryValue(p, "combat_generic_crit", t.critChance(self, t))
self:talentTemporaryValue(p, "combat_critical_power", t.critPower(self, t))
end,
info = function(self, t)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment