Release 1.0.25

- Various updates to uniques
 - Resistances now always show in sidebar even if their value is 0
 - Elemental Focus now disables status effects
This commit is contained in:
Openarl
2016-09-06 14:06:22 +10:00
parent 741d8e1f8f
commit 69622cf94e
25 changed files with 181 additions and 165 deletions

View File

@@ -220,10 +220,10 @@ function buildMode:Init(dbFileName, buildName)
{ mod = "total_dodgeAttacks", label = "Attack Dodge Chance", fmt = "d%%", pc = true },
{ mod = "total_dodgeSpells", label = "Spell Dodge Chance", fmt = "d%%", pc = true },
{ },
{ mod = "total_fireResist", label = "Fire Resistance", fmt = "d%%" },
{ mod = "total_coldResist", label = "Cold Resistance", fmt = "d%%" },
{ mod = "total_lightningResist", label = "Lightning Resistance", fmt = "d%%" },
{ mod = "total_chaosResist", label = "Chaos Resistance", fmt = "d%%" },
{ mod = "total_fireResist", label = "Fire Resistance", fmt = "d%%", condFunc = function() return true end },
{ mod = "total_coldResist", label = "Cold Resistance", fmt = "d%%", condFunc = function() return true end },
{ mod = "total_lightningResist", label = "Lightning Resistance", fmt = "d%%", condFunc = function() return true end },
{ mod = "total_chaosResist", label = "Chaos Resistance", fmt = "d%%", condFunc = function() return true end },
{ mod = "total_fireResistOverCap", label = "Fire Res. Over Max", fmt = "d%%" },
{ mod = "total_coldResistOverCap", label = "Cold Res. Over Max", fmt = "d%%" },
{ mod = "total_lightningResistOverCap", label = "Lightning Res. Over Max", fmt = "d%%" },