Skip to content

Commit 05c1941

Browse files
LocalIdentityLocalIdentity
andauthored
Fix Phantasmal Might not working when Summon Phantasm was linked to Spell Totem (#8773)
The buff did not have the tag to let it apply to Totems I don't know what this tag is even needed for tbh. It's a relic from Openarl 8 years ago Co-authored-by: LocalIdentity <localidentity2@gmail.com>
1 parent 5460c56 commit 05c1941

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/Data/Skills/sup_int.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5252,11 +5252,11 @@ skills["SupportSummonPhantasm"] = {
52525252
mod("ActivePhantasmLimit", "BASE", nil),
52535253
},
52545254
["phantasm_minimum_added_physical_damage_to_grant"] = {
5255-
mod("PhysicalMin", "BASE", nil, ModFlag.Spell, 0, { type = "PerStat", stat = "ActivePhantasmLimit" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Phantasmal Might", effectCond = "PhantasmalMight" })
5255+
mod("PhysicalMin", "BASE", nil, ModFlag.Spell, 0, { type = "PerStat", stat = "ActivePhantasmLimit" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Phantasmal Might", effectCond = "PhantasmalMight", allowTotemBuff = true })
52565256
},
52575257
["phantasm_maximum_added_physical_damage_to_grant"] = {
5258-
mod("PhysicalMax", "BASE", nil, ModFlag.Spell, 0, { type = "PerStat", stat = "ActivePhantasmLimit" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Phantasmal Might", effectCond = "PhantasmalMight" })
5259-
}
5258+
mod("PhysicalMax", "BASE", nil, ModFlag.Spell, 0, { type = "PerStat", stat = "ActivePhantasmLimit" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Phantasmal Might", effectCond = "PhantasmalMight", allowTotemBuff = true })
5259+
},
52605260
},
52615261
qualityStats = {
52625262
Default = {

src/Export/Skills/sup_int.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -696,11 +696,11 @@ local skills, mod, flag, skill = ...
696696
mod("ActivePhantasmLimit", "BASE", nil),
697697
},
698698
["phantasm_minimum_added_physical_damage_to_grant"] = {
699-
mod("PhysicalMin", "BASE", nil, ModFlag.Spell, 0, { type = "PerStat", stat = "ActivePhantasmLimit" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Phantasmal Might", effectCond = "PhantasmalMight" })
699+
mod("PhysicalMin", "BASE", nil, ModFlag.Spell, 0, { type = "PerStat", stat = "ActivePhantasmLimit" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Phantasmal Might", effectCond = "PhantasmalMight", allowTotemBuff = true })
700700
},
701701
["phantasm_maximum_added_physical_damage_to_grant"] = {
702-
mod("PhysicalMax", "BASE", nil, ModFlag.Spell, 0, { type = "PerStat", stat = "ActivePhantasmLimit" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Phantasmal Might", effectCond = "PhantasmalMight" })
703-
}
702+
mod("PhysicalMax", "BASE", nil, ModFlag.Spell, 0, { type = "PerStat", stat = "ActivePhantasmLimit" }, { type = "GlobalEffect", effectType = "Buff", effectName = "Phantasmal Might", effectCond = "PhantasmalMight", allowTotemBuff = true })
703+
},
704704
},
705705
#mods
706706

0 commit comments

Comments
 (0)