Skip to content

Commit 53e752b

Browse files
committed
Merge remote-tracking branch 'origin/dev'
2 parents 2e30804 + 4add4ab commit 53e752b

40 files changed

+775
-200
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 1.4.153 - 2019/12/11
2+
* Added 3.9.0 passive tree
3+
* Applied unique balance changes from 3.9.0 (thanks ppoelzl)
4+
* Updated many unique items that had changed in previous patches (thanks ppoelzl)
5+
* Added Vermillion Ring base (apologies for this being missing for so long)
6+
17
### 1.4.152 - 2019/09/15
28
* Added support for anointments that grant notable passives
39
* Added support for Transfiguration of Body/Mind/Soul

Classes/PassiveTree.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ local PassiveTreeClass = newClass("PassiveTree", function(self, treeVersion)
316316
socket.attributesInRadius[radiusIndex] = { }
317317
local rSq = radiusInfo.rad * radiusInfo.rad
318318
for _, node in pairs(self.nodes) do
319-
if node ~= socket then
319+
if node ~= socket and not node.isBlighted then
320320
local vX, vY = node.x - socket.x, node.y - socket.y
321321
if vX * vX + vY * vY <= rSq then
322322
socket.nodesInRadius[radiusIndex][node.id] = node

Data/2_6/ModCache.lua

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

Data/3_0/Bases/ring.lua

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,12 @@ itemBases["Opal Ring"] = {
125125
implicit = "(15-25)% increased Elemental Damage",
126126
req = { level = 80, },
127127
}
128+
itemBases["Vermillion Ring"] = {
129+
type = "Ring",
130+
tags = { default = true, ring = true, not_for_sale = true, atlas_base_type = true, ringatlas3 = true, },
131+
implicit = "(5-7)% increased maximum Life",
132+
req = { level = 80, },
133+
}
128134
itemBases["Cerulean Ring"] = {
129135
type = "Ring",
130136
tags = { default = true, ring = true, not_for_sale = true, atlas_base_type = true, ringatlas4 = true, },

Data/3_0/Essence.lua

Lines changed: 31 additions & 31 deletions
Large diffs are not rendered by default.

Data/3_0/ModCache.lua

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

Data/3_0/ModMaster.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,8 @@ return {
255255
{ type = "Suffix", affix = "of Craft", "Minions have (11-15)% increased maximum Life", statOrder = { 940 }, level = 40, group = "MinionLife", types = { ["Helmet"] = true, }, },
256256
{ type = "Suffix", affix = "of Craft", "Minions have (16-20)% increased maximum Life", statOrder = { 940 }, level = 68, group = "MinionLife", types = { ["Helmet"] = true, }, },
257257
{ type = "Prefix", affix = "Upgraded", "Minions deal (10-20)% increased Damage", statOrder = { 1133 }, level = 40, group = "MinionDamage", types = { ["Gloves"] = true, }, },
258-
{ type = "Suffix", affix = "of Craft", "Minions have (13-17)% increased Movement Speed", statOrder = { 943 }, level = 30, group = "MinionMovementSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, },
259-
{ type = "Suffix", affix = "of Craft", "Minions have (18-22)% increased Movement Speed", statOrder = { 943 }, level = 60, group = "MinionMovementSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, },
258+
{ type = "Suffix", affix = "of Craft", "Minions have (13-17)% increased Movement Speed", statOrder = { 943 }, level = 30, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, },
259+
{ type = "Suffix", affix = "of Craft", "Minions have (18-22)% increased Movement Speed", statOrder = { 943 }, level = 60, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, },
260260
{ type = "Prefix", affix = "Upgraded", "Minions deal (37-51)% increased Damage", statOrder = { 1133 }, level = 30, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, },
261261
{ type = "Prefix", affix = "Upgraded", "Minions deal (52-66)% increased Damage", statOrder = { 1133 }, level = 60, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, },
262262
{ type = "Prefix", affix = "Upgraded", "Minions deal (67-81)% increased Damage", statOrder = { 1133 }, level = 75, group = "WeaponCasterDamagePrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Staff"] = true, ["Bow"] = true, }, },

Data/3_0/Skills/act_dex.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1258,7 +1258,7 @@ skills["CobraLash"] = {
12581258
baseEffectiveness = 1,
12591259
incrementalEffectiveness = 0.023299999535084,
12601260
description = "Fires a poisonous projectile based on your weapon that will chain between enemies. Requires a Dagger or Claw.",
1261-
skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.SkillCanMirageArcher] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, [SkillType.ChaosSkill] = true, },
1261+
skillTypes = { [SkillType.Attack] = true, [SkillType.ProjectileAttack] = true, [SkillType.Projectile] = true, [SkillType.SkillCanVolley] = true, [SkillType.Hit] = true, [SkillType.Triggerable] = true, [SkillType.ChaosSkill] = true, },
12621262
weaponTypes = {
12631263
["Dagger"] = true,
12641264
["Claw"] = true,
@@ -2767,7 +2767,7 @@ skills["FlickerStrike"] = {
27672767
"base_attack_speed_+%_per_frenzy_charge",
27682768
"add_frenzy_charge_on_skill_hit_%",
27692769
"flicker_strike_buff_movement_speed_+%",
2770-
"flicker_strike_buff_duration_ms",
2770+
"base_skill_effect_duration",
27712771
"ignores_proximity_shield",
27722772
"base_skill_show_average_damage_instead_of_dps",
27732773
"melee_defer_damage_prediction",
@@ -5832,6 +5832,7 @@ skills["SmokeMine"] = {
58325832
"disable_mine_detonation_cascade",
58335833
"mine_detonates_instantly",
58345834
"additive_mine_duration_modifiers_apply_to_buff_effect_duration",
5835+
"mine_cannot_rearm",
58355836
},
58365837
levels = {
58375838
[1] = { 8000, 4000, 20, 0, 4000, 0, cooldown = 2.5, levelRequirement = 10, manaCost = 6, statInterpolation = { 1, 1, 1, 1, 1, 1, }, },

Data/3_0/Skills/act_int.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7327,7 +7327,6 @@ skills["Skitterbots"] = {
73277327
"chill_effect_+%",
73287328
"minion_movement_speed_+%",
73297329
"display_skitterbot_limit_per_type",
7330-
"base_deal_no_damage",
73317330
"display_skitterbot_shocking_aura",
73327331
"display_skitterbot_chilling_aura",
73337332
},

Data/3_0/Skills/spectre.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3413,7 +3413,7 @@ skills["SkeletonVulnerability"] = {
34133413
},
34143414
}
34153415
skills["SlavedriverFlameWhip"] = {
3416-
name = "Flame Surge",
3416+
name = "Lightning Surge",
34173417
hidden = true,
34183418
color = 3,
34193419
baseEffectiveness = 2.5,

0 commit comments

Comments
 (0)