Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/Data/ModCache.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1948,10 +1948,7 @@ c["30% increased Daze Buildup"]={{}," Daze Buildup "}
c["30% increased Daze Buildup with Quarterstaves"]={{}," Daze Buildup "}
c["30% increased Daze Buildup with Quarterstaves 30% increased Freeze Buildup with Quarterstaves"]={{}," Daze Buildup 30% increased Freeze Buildup with Quarterstaves "}
c["30% increased Daze Buildup with Quarterstaves 30% increased Freeze Buildup with Quarterstaves 30% increased Stun Buildup with Quarterstaves"]={{}," Daze Buildup 30% increased Freeze Buildup with Quarterstaves 30% increased Stun Buildup with Quarterstaves "}
c["30% increased Defences while wielding a Quarterstaff"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=30}}," while wielding a Quarterstaff "}
c["30% increased Defences while wielding a Quarterstaff 30% increased Daze Buildup with Quarterstaves"]={{[1]={flags=2097156,keywordFlags=0,name="Defences",type="INC",value=30}}," while wielding a Quarterstaff 30% increased Daze Buildup "}
c["30% increased Defences while wielding a Quarterstaff 30% increased Daze Buildup with Quarterstaves 30% increased Freeze Buildup with Quarterstaves"]={{[1]={flags=2097156,keywordFlags=0,name="Defences",type="INC",value=30}}," while wielding a Quarterstaff 30% increased Daze Buildup 30% increased Freeze Buildup with Quarterstaves "}
c["30% increased Defences while wielding a Quarterstaff 30% increased Daze Buildup with Quarterstaves 30% increased Freeze Buildup with Quarterstaves 30% increased Stun Buildup with Quarterstaves"]={{[1]={flags=2097156,keywordFlags=0,name="Defences",type="INC",value=30}}," while wielding a Quarterstaff 30% increased Daze Buildup 30% increased Freeze Buildup with Quarterstaves 30% increased Stun Buildup with Quarterstaves "}
c["30% increased Defences while wielding a Quarterstaff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="Defences",type="INC",value=30}},nil}
c["30% increased Electrocute Buildup"]={{}," Electrocute Buildup "}
c["30% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=30}},nil}
c["30% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}
Expand Down
1 change: 1 addition & 0 deletions src/Modules/ModParser.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1541,6 +1541,7 @@ local modTagList = {
["while wielding a claw or dagger"] = { tag = { type = "Condition", varList = { "UsingClaw", "UsingDagger" } } },
["while wielding a mace"] = { tag = { type = "Condition", var = "UsingMace" } },
["while wielding a staff"] = { tag = { type = "Condition", var = "UsingStaff" } },
["while wielding a quarterstaff"] = { tag = { type = "Condition", var = "UsingStaff" } },
["while wielding a sword"] = { tag = { type = "Condition", var = "UsingSword" } },
["while wielding a melee weapon"] = { tag = { type = "Condition", var = "UsingMeleeWeapon" } },
["while wielding a one handed weapon"] = { tag = { type = "Condition", var = "UsingOneHandedWeapon" } },
Expand Down