-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avoidance DR is working incorrectly #17
Comments
Testing on build 44930 it looks like avoidance DR has been implemented but now this mechanism has other critical bugs. First let's cover what works correctly. If you only have defense rating from gear and no parry/dodge rating at all (so this can't be tested on a DK) then the character sheet total avoidance stats shown under the 'Defenses' tab and the values returned from APIs like Once you add parry/dodge rating into the mix things go horribly wrong, though. Let's take parry rating as an example, although dodge rating has the same problem. I ran a little experiment on my warrior that has 10% naked parry chance (5% base + 5% from Deflection); starting with a naked character, I incrementally equipped more and more gear with defense bonuses and documented the expected vs. in-game total parry chance. For the last 3 pieces of gear I equipped gear with parry rating on it as well. The experiment is summarized below, where the
As can be seen in the table, the numbers match up exactly until we start adding parry rating. Once we do that, the total value given in-game by the character sheet and the APIs seems to be I also performed a test for dodge rating and the results were similar. |
Char ran a test to measure the actual avoidance values experienced in combat. He used a level 80 Orc DK template and was attacked by level 57 Servants of Razelikh. Due to the natural weapon skill / defense difference he had an additional
Summarized, with
Note that these values are the theoretically correct values assuming the beta has no bugs - the actual character sheet and API values reported in-game for dodge and parry were incorrect as per the post above this one. The game reported 16.48% dodge and 22.65% parry respectively, which would make the diminished totals with the level difference added 21.08% dodge and 27.25% parry. And the results of the test logging 18775 incoming attacks:
Looking at these results, we can see that the values measured for miss and parry actually behave correctly and match our expected values, even though the game reports incorrect values for parry. With dodge, the story is different; the value measured actually matches the incorrect value reported by the game - In summary, it looks like parry is only bugged on the client but dodge is bugged both on the client and the server. |
Character sheet values and tooltips appear to be fixed in build 45327 so Char and I ran some more tests. The setup was as follows:
Summarized, with
And the results of the test logging 23003 incoming attacks:
In conclusion, it looks like dodge DR is still bugged and the value we measured here ( |
Will do a retest after next reset but should hopefully be fixed |
WotLK introduced diminishing returns on the parry, dodge, and miss avoidance stats. The specifics of how these diminishing returns work and what is the formula to calculate them was the subject of a big research effort on EJ by Whitetooth that's documented here.
He then gives a nice table that summarizes the$\large k$ , $\large C_p$ , $\large C_d$ , and $\large C_m$ values for all classes.
We1 went to test avoidance DR on the beta (build 44644) to see how accurate Whitetooth's formula and coefficients are, and to find any quirks in DR behavior. We used the exact same race / class / gear/ talent combination and attacked the same target on all the collected logs so that we can easily combine the data.
We used a level 70 Orc DK template and were attacked by a level 57 Servant of Razelikh. Due to the natural weapon skill / defense difference we had an additional
(70*5 - 57*5) * 0.04% = 2.6%
to parry, dodge, and chance to be missed that is not diminished by the DR formula. Fully geared the character had:147 * 0.04% = 5.88%
bonus parry, dodge, and chance to be missedThe breakdown and summary of these stats in table form (note that only the Bonus column is subject to diminishing return):
This is verified by the character sheet (note these screenshots naturally do not include the 2.60% from level difference):
Calculating the diminished values of these stats with Whitetooth's formula:2
Using these diminished values in place of the raw bonus values from the table above, our expected avoidance values from the test are:
And finally our test results from combined logs of 17572 incoming attacks:
As this table demonstrates, avoidance DR simply isn't working at all; our measured values are within error margin of our raw total values and nowhere near the diminished values.
Footnotes
Thanks to Char, deance, and Kilo for helping collect data for this test ↩
Rounded to 6 decimal digits for easy reading ↩
The text was updated successfully, but these errors were encountered: