Release 1.0.15

- Added support for more trigger gems
- Added support for Radiant Faith
- Blinged up number edit controls
- Other minor changes
This commit is contained in:
Openarl
2016-09-02 02:24:21 +10:00
parent 4e49df32fc
commit bfe0b01c19
12 changed files with 337 additions and 139 deletions

View File

@@ -364,6 +364,8 @@ local specialModList = {
["(%d+)%% increased damage of each damage type for which you have a matching golem"] = function(num) return { CondMod_HavePhysicalGolem_physicalInc = num, CondMod_HaveLightningGolem_lightningInc = num, CondMod_HaveColdGolem_coldInc = num, CondMod_HaveFireGolem_fireInc = num, CondMod_HaveChaosGolem_chaosInc = num } end,
["100%% increased effect of buffs granted by your elemental golems"] = { Cond_LiegeOfThePrimordial = true },
["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,
-- 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,