Skip to content

Commit b15baea

Browse files
LocalIdentityLocalIdentity
andauthored
Add 0.3 25% more damage for Spectres and Beasts (#1375)
The 0.3 patch added a 25% more damage bonus for spectres and beasts that is handled server side so we need to manually add a stat to the gems for it to work in PoB Co-authored-by: LocalIdentity <[email protected]>
1 parent 15f8fc6 commit b15baea

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

src/Data/Skills/act_dex.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -897,6 +897,9 @@ skills["SummonBeastPlayer"] = {
897897
duration = true,
898898
permanentMinion = true,
899899
},
900+
baseMods = {
901+
mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", 25) }), --Server side damage mod added in 0.3,
902+
},
900903
constantStats = {
901904
{ "minion_base_resummon_time_ms", 12000 },
902905
},

src/Data/Skills/act_int.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18894,6 +18894,9 @@ skills["SummonSpectrePlayer"] = {
1889418894
duration = true,
1889518895
permanentMinion = true,
1889618896
},
18897+
baseMods = {
18898+
mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", 25) }), --Server side damage mod added in 0.3,
18899+
},
1889718900
constantStats = {
1889818901
{ "minion_base_resummon_time_ms", 12000 },
1889918902
{ "spectre_warp_start_distance", 100 },

src/Export/Skills/act_dex.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ statMap = {
9191
#skill SummonBeastPlayer
9292
#set SummonBeastPlayer
9393
#flags spell minion summonBeast duration permanentMinion
94+
#baseMod mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", 25) }), --Server side damage mod added in 0.3
9495
#mods
9596
#skillEnd
9697

src/Export/Skills/act_int.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1140,6 +1140,7 @@ statMap = {
11401140
#skill SummonSpectrePlayer
11411141
#set SummonSpectrePlayer
11421142
#flags spell minion spectre duration permanentMinion
1143+
#baseMod mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", 25) }), --Server side damage mod added in 0.3
11431144
#mods
11441145
#skillEnd
11451146

0 commit comments

Comments
 (0)