Skip to content

Commit 8813ab7

Browse files
authored
Fix Frost Bomb not applying Cold Exposure (#511)
* Fix Frost Bomb not applying Cold Exposure * Grab exposure value from skill_cold_exposure_magnitude
1 parent f46655a commit 8813ab7

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

src/Data/Skills/act_int.lua

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7689,6 +7689,12 @@ skills["FrostBombPlayer"] = {
76897689
incrementalEffectiveness = 0.14000000059605,
76907690
damageIncrementalEffectiveness = 0.0065000001341105,
76917691
statDescriptionScope = "frost_bomb",
7692+
statMap = {
7693+
['skill_cold_exposure_magnitude'] = {
7694+
mod("ColdExposure", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff" }),
7695+
mult = -1
7696+
},
7697+
},
76927698
baseFlags = {
76937699
spell = true,
76947700
area = true,

src/Export/Skills/act_int.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,12 @@ statMap = {
517517
#startSets
518518
#set FrostBombPlayer
519519
#flags spell area duration
520+
statMap = {
521+
['skill_cold_exposure_magnitude'] = {
522+
mod("ColdExposure", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Debuff" }),
523+
mult = -1
524+
},
525+
},
520526
#mods
521527
#skillEnd
522528

0 commit comments

Comments
 (0)