Skip to content

Commit 8995f21

Browse files
authored
Add support for "while wielding a Quarterstaff" tag (#1074)
1 parent 3c579af commit 8995f21

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Data/ModCache.lua

+1-4
Original file line numberDiff line numberDiff line change
@@ -1948,10 +1948,7 @@ c["30% increased Daze Buildup"]={{}," Daze Buildup "}
19481948
c["30% increased Daze Buildup with Quarterstaves"]={{}," Daze Buildup "}
19491949
c["30% increased Daze Buildup with Quarterstaves 30% increased Freeze Buildup with Quarterstaves"]={{}," Daze Buildup 30% increased Freeze Buildup with Quarterstaves "}
19501950
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 "}
1951-
c["30% increased Defences while wielding a Quarterstaff"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=30}}," while wielding a Quarterstaff "}
1952-
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 "}
1953-
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 "}
1954-
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 "}
1951+
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}
19551952
c["30% increased Electrocute Buildup"]={{}," Electrocute Buildup "}
19561953
c["30% increased Elemental Ailment Threshold"]={{[1]={flags=0,keywordFlags=0,name="AilmentThreshold",type="INC",value=30}},nil}
19571954
c["30% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=30}},nil}

src/Modules/ModParser.lua

+1
Original file line numberDiff line numberDiff line change
@@ -1541,6 +1541,7 @@ local modTagList = {
15411541
["while wielding a claw or dagger"] = { tag = { type = "Condition", varList = { "UsingClaw", "UsingDagger" } } },
15421542
["while wielding a mace"] = { tag = { type = "Condition", var = "UsingMace" } },
15431543
["while wielding a staff"] = { tag = { type = "Condition", var = "UsingStaff" } },
1544+
["while wielding a quarterstaff"] = { tag = { type = "Condition", var = "UsingStaff" } },
15441545
["while wielding a sword"] = { tag = { type = "Condition", var = "UsingSword" } },
15451546
["while wielding a melee weapon"] = { tag = { type = "Condition", var = "UsingMeleeWeapon" } },
15461547
["while wielding a one handed weapon"] = { tag = { type = "Condition", var = "UsingOneHandedWeapon" } },

0 commit comments

Comments
 (0)