Fix threat values of warrior abilities #2119
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🍰 Pullrequest
Small changes to threat of warrior abilities to match them with values from classic testing.
Proof
From these I discovered that most warrior abilities have static threat which is just spell level * (static multiplier)
63/14 = 243/54 = 270/60 = 4.5 from that I filled in the remaining ranks
45/10 = 261/58 = 4.5 same as Revenge, from that I filled in the remaining ranks
Note: static multiplier is just a hidden constant to calculate how much static threat the ability does based on its spell level. It is different from the multiplier in spell_threat table which is for how much threat the ability will do based on its damage.
Issues
How2Test
.add 6619
use it then.learn all_trainer
.list threat
to see how much threat they're generatingI tested all the abilities individually.
Made sure static threat is applied BEFORE the multiplier for Revenge and Shield Bash and Hamstring.
Made sure thunder clap has the bonus threat on all ranks.
Use bloodthirst or pummel on the mob, find that it lands normally because it's using default (level * 5) skill, not your current weapon skill as it should.
Todo / Checklist
"static threat = spell level * static multiplier"
rule of other abilities