Skip to content

Commit 866475f

Browse files
committed
Fix Ward costs not scaling with other support multis
1 parent 9271d94 commit 866475f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/Data/Skills/other.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12412,7 +12412,7 @@ skills["SupportOlrothsHubrisPlayer"] = {
1241212412
statDescriptionScope = "gem_stat_descriptions",
1241312413
statMap = {
1241412414
["base_ward_cost_+_%_of_maximum_ward"] = {
12415-
mod("RunicWardCostNoMult", "BASE", nil, 0, 0, { type = "PercentStat", stat = "RunicWard", percent = 1 }),
12415+
mod("RunicWardCostBase", "BASE", nil, 0, 0, { type = "PercentStat", stat = "RunicWard", percent = 1 }),
1241612416
},
1241712417
["added_physical_damage_%_ward_cost"] = {
1241812418
mod("PhysicalMin", "BASE", nil, 0, 0, { type = "PercentStat", stat = "RunicWardCost", percent = 1 }),
@@ -14683,7 +14683,7 @@ skills["SupportRunicInfusionPlayer"] = {
1468314683
statDescriptionScope = "gem_stat_descriptions",
1468414684
statMap = {
1468514685
["base_ward_cost_+_%_of_maximum_ward"] = {
14686-
mod("RunicWardCostNoMult", "BASE", nil, 0, 0, { type = "PercentStat", stat = "RunicWard", percent = 1 }),
14686+
mod("RunicWardCostBase", "BASE", nil, 0, 0, { type = "PercentStat", stat = "RunicWard", percent = 1 }),
1468714687
},
1468814688
["added_physical_damage_%_ward_cost"] = {
1468914689
mod("PhysicalMin", "BASE", nil, 0, 0, { type = "PercentStat", stat = "RunicWardCost", percent = 1 }),

src/Export/Skills/other.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ statMap = {
830830
#flags
831831
statMap = {
832832
["base_ward_cost_+_%_of_maximum_ward"] = {
833-
mod("RunicWardCostNoMult", "BASE", nil, 0, 0, { type = "PercentStat", stat = "RunicWard", percent = 1 }),
833+
mod("RunicWardCostBase", "BASE", nil, 0, 0, { type = "PercentStat", stat = "RunicWard", percent = 1 }),
834834
},
835835
["added_physical_damage_%_ward_cost"] = {
836836
mod("PhysicalMin", "BASE", nil, 0, 0, { type = "PercentStat", stat = "RunicWardCost", percent = 1 }),
@@ -1014,7 +1014,7 @@ statMap = {
10141014
#flags
10151015
statMap = {
10161016
["base_ward_cost_+_%_of_maximum_ward"] = {
1017-
mod("RunicWardCostNoMult", "BASE", nil, 0, 0, { type = "PercentStat", stat = "RunicWard", percent = 1 }),
1017+
mod("RunicWardCostBase", "BASE", nil, 0, 0, { type = "PercentStat", stat = "RunicWard", percent = 1 }),
10181018
},
10191019
["added_physical_damage_%_ward_cost"] = {
10201020
mod("PhysicalMin", "BASE", nil, 0, 0, { type = "PercentStat", stat = "RunicWardCost", percent = 1 }),

0 commit comments

Comments
 (0)