Skip to content

Commit

Permalink
Fix Phantasmal Flameblast AoE values (#6813)
Browse files Browse the repository at this point in the history
Phantasmal Flameblast grants base radius to the gem as its quality effect. It used the `active_skill_base_radius_+` stat to grant the extra base radius which was stat mapped to `skill("radiusExtra", nil)`.
This would be overwritten by the stat map on the gem that also used `radiusExtra` instead of summing the values together. Changed the statMap on the gem to use `mod("AreaOfEffect", "BASE")` instead so it sums correctly

Co-authored-by: LocalIdentity <[email protected]>
  • Loading branch information
LocalIdentity and LocalIdentity authored Dec 1, 2023
1 parent a280f27 commit 53cd1b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Data/Skills/act_int.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4097,7 +4097,7 @@ skills["Flameblast"] = {
mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "Multiplier", var = "FlameblastStageAfterFirst" }),
},
["vaal_flameblast_radius_+_per_stage"] = {
skill("radiusExtra", nil, { type = "Multiplier", var = "FlameblastStageAfterFirst" }),
mod("AreaOfEffect", "BASE", nil, 0, 0, { type = "Multiplier", var = "FlameblastStageAfterFirst" }),
},
},
baseFlags = {
Expand Down Expand Up @@ -4199,7 +4199,7 @@ skills["VaalFlameblast"] = {
mod("Damage", "MORE", nil, 0, KeywordFlag.Ailment, { type = "Multiplier", var = "VaalFlameblastStage" }),
},
["vaal_flameblast_radius_+_per_stage"] = {
skill("radiusExtra", nil, { type = "Multiplier", var = "VaalFlameblastStage" }),
mod("AreaOfEffect", "BASE", nil, 0, 0, { type = "Multiplier", var = "FlameblastStageAfterFirst" }),
},
},
baseFlags = {
Expand Down
4 changes: 2 additions & 2 deletions src/Export/Skills/act_int.txt
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,7 @@ local skills, mod, flag, skill = ...
mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "Multiplier", var = "FlameblastStageAfterFirst" }),
},
["vaal_flameblast_radius_+_per_stage"] = {
skill("radiusExtra", nil, { type = "Multiplier", var = "FlameblastStageAfterFirst" }),
mod("AreaOfEffect", "BASE", nil, 0, 0, { type = "Multiplier", var = "FlameblastStageAfterFirst" }),
},
},
#baseMod skill("radius", 2)
Expand All @@ -936,7 +936,7 @@ local skills, mod, flag, skill = ...
mod("Damage", "MORE", nil, 0, KeywordFlag.Ailment, { type = "Multiplier", var = "VaalFlameblastStage" }),
},
["vaal_flameblast_radius_+_per_stage"] = {
skill("radiusExtra", nil, { type = "Multiplier", var = "VaalFlameblastStage" }),
mod("AreaOfEffect", "BASE", nil, 0, 0, { type = "Multiplier", var = "FlameblastStageAfterFirst" }),
},
},
#baseMod mod("Multiplier:VaalFlameblastMaxStages", "BASE", 15)
Expand Down

0 comments on commit 53cd1b7

Please sign in to comment.