Relese 1.0.20

- Added str/dex/int to side bar
- Enhanced skill gem list in a few ways
- MASSIVELY improved interactions with item list/DB controls
- Add mana cost to side bar
This commit is contained in:
Openarl
2016-09-02 20:36:20 +10:00
parent b693457819
commit c2cf88902e
15 changed files with 265 additions and 48 deletions

View File

@@ -368,6 +368,8 @@ local specialModList = {
["enemies you curse take (%d+)%% increased damage"] = function(num) return { CondMod_EnemyCursed_effective_damageTakenInc = num } end,
["grants armour equal to (%d+)%% of your reserved life to you and nearby allies"] = function(num) return { armourFromReservedLife = num } end,
["grants maximum energy shield equal to (%d+)%% of your reserved mana to you and nearby allies"] = function(num) return { energyShieldFromReservedMana = num } end,
["you and nearby allies deal (%d+)%% increased damage"] = function(num) return { damageInc = num } end,
["you and nearby allies have (%d+)%% increased movement speed"] = function(num) return { movementSpeedInc = num } end,
-- Special node types
["(%d+)%% of block chance applied to spells"] = function(num) return { blockChanceConv = num } end,
["(%d+)%% additional block chance with staves"] = function(num) return { CondMod_UsingStaff_blockChance = num } end,