MMO News and theorycrafting for advanced MMO gamers. News and articles that relate to your gameplay. World of Warcraft, SWTOR, Guild Wars 2, Rift, TERA, Eve Online, Star Wars the Old Republic, Diablo3, The Secret World and all Western AAA MMOs
|
Tanking Stat Distribution Analysis
|
|
02-10-2012, 11:48 AM
(This post was last modified: 02-10-2012 03:20 PM by Agrath.)
Post: #1
|
|||
|
|||
|
Tanking Stat Distribution Analysis
Tl;dr Hey look! I made graphs that tell you the optimal tanking stat distribution per class. Looks like things are reasonably well balanced in terms of tanking class comparison. Check out the mean mitigation calculator too. Here are some pictures. Here is the excel spreadsheet (hosted by dropbox).
Tanking Stat Distribution Analysis Hello! After reading around on the tanking forums, I heard a lot of suggestions about the optimal ways to gear a tank. However, I saw a few problems in that 1) the advice varied a great amount and 2) the optimal way to gear one tank class is different from the optimal way to gear another tank class. So I got curious and decided to enter into the realm of theoryocrafting. It turns out that my analysis also happened to calculate all of the required values to determine tanking mitigation scaling, so I made the appropriate graphs. I decided to solve this problem via brute force due to the relative ease of brute force programming vs the complexities of programmatically solving for three variables (defense rating, shield rating, absorb rating – please note that Damage reduction does not have an effect on optimum stat ratios). Not the smartest solution, but hey – computation is cheap. As a starting point for this problem, I used Gankstah’s “Tanking: A Primer – FAQs.” Gankstah’s guide is very good in relating the theory behind tanking. It also shows a great way to compare tank performance – though mean mitigation. This analysis is an extension on Gankstah's mean mitigation work. I, along with Gankstah (for the most part) neglected showing empire/republic name translations. There are plenty of other guides for that. I used MATLAB as a tool to calculate the values and determine the best one. The code is posted at the end of the guide. Using the values returned by MATLAB, I made an excel spreadsheet to better relay the data. The spreadsheet is also hosted via dropbox here. And attached here (look below) (requires username to download). Unfortunately, I had to break it up into two documents because there's a 1mb limit. I also took screenshots and made an album at imgur for those that didn’t want to download the excel file (and use the calculator). If you have a better way to host this, please tell me! How to read this spreadsheet: The first section (Individual Mean Mitigation Calculator) is intended to be used to calculate the mean mitigation of any tank up to T3 gear. Please note that the mitigation calculations vary widely per class, so make sure data is entered into the block of the corresponding class. The next section (class comparison) is a tanking class comparison based on the current state of the game. The data behind these graphs are in the next three sections. As a way to measure scaling, I used the value of total stats (i.e. defense rating + shield rating + absorb rating). This way, it is independent of fixed gear sets, and is much more flexible. You should take away from this that the tanking classes are pretty well balanced (with SA and BH having a slight advantage over SW) - not that X class is better than the others. Gear choices can easily outweigh the default class mean mitigation advantages. To compare tanks, use the calculator in the spreadsheet, not these comparison graphs. Note that in this analysis I only considered level 50. Sure, I could have made a 3D contour plot of level vs. total stats vs. mean mitigation, but nah. That being said, this analysis is probably a good approximation of optimal stat distribution pre-50. The next three sections look at each class specifically and calculate the optimal stat distribution for each total value of stats. Note that only the class specific debuffs (at least, ones that increase mitigation) are accounted for, per class (i.e. Sith Assassin doesn’t get combust bonus, only BH does). On this topic, BH has combust (4% damage reduction) and oil slick (6.66% overall avoid), SA has discharge (5% avoid) and wither (5% damage reduction), and SW has smash (5% damage reduction) for debuffs. This makes the Sith assassin or BH the best off-tank (in terms of mitigation) because they can provide the most damage reduction through debuffs. In the case of the SA, the 2pc bonus gives 5% shield, which changes the optimal stat distribution per value of total stats. Make sure to use the appropriate graph. (SA with 4 piece bonus: also use the 2 piece bonus graph). Apparently SW got screwed and need a LOT of defense for optimum mean mitigation. This is really hard to gear for because there is not much top tier gear choice in this game (yet I hope). I decided to calculate a realistic model (capping defense at 500) so that the information was more relevant. SWs, please let me know if you need a graph capped at a lower value. Note that it may be difficult to get the optimum stat distribution in game because the gear selection/mod-ability is very limited. However, you will still gain mean mitigation increases by getting closer to these values/ ratios. Please verify my findings and alert me if I made any mistakes. I will try to stay up to date with this project and correct any errors. Please feel free to re-post this guide to other forums and websites- I just ask that you include my name :] Thanks for reading! Agrath Prophecy of the Five And now some MATLAB code: Brute Force Process (hah, this takes 15 minutes to run): Code: function [dataholder] = bestMitigation( DR)%,twopc, fourpiece)Bounty Hunter Mitigation Calculation: Code: function [ mitigation ] = mitigationBH( avoid, shield, absorb, DR)Sith Assassin Mitigation Calculation: Code: function [ mitigation ] = mitigationSA( avoid, shield, absorb, DR)Sith Warrior Mitigation Calculation: Code: function [ mitigation ] = mitigationSW( avoid, shield, absorb, DR) |
|||
|
02-10-2012, 11:58 AM
Post: #2
|
|||
|
|||
|
RE: Tanking Stat Distribution Analysis
Possibly of interest:
http://sithwarrior.com/forums/Thread-Tan...eet-online There is no "crit immunity" in TOR. The effect of attacker criticals can be simulated with no difficulty. |
|||
|
02-10-2012, 07:58 PM
(This post was last modified: 02-11-2012 01:25 AM by Alratan.)
Post: #3
|
|||
|
|||
|
RE: Tanking Stat Distribution Analysis
That SJ < SA intrigues me, especially the extent of it, although the PT > SA/SJ doesn't (even if minor).
Some questions, requests and ideas:
|
|||
|
02-11-2012, 02:01 AM
(This post was last modified: 02-11-2012 02:28 AM by LagunaD.)
Post: #4
|
|||
|
|||
|
RE: Tanking Stat Distribution Analysis
D'oh. Too many names starting with "A"...nevermind...
|
|||
|
02-11-2012, 02:11 AM
(This post was last modified: 02-11-2012 02:23 AM by Alratan.)
Post: #5
|
|||
|
|||
|
RE: Tanking Stat Distribution Analysis
LagunaD, I was referring Agrath's post, not yours :). If I wished to request additions to your spreadsheet, I would have done so in the appropriate thread.
In this case, I was discussing the optimimum mean class comparison graphs posted by Agrath, which claim to include cooldown and (self-)healing. In order to form an accurate comparison of optimal gear between classes, one must also compare optimal stats. In the Tanking Stat Distribution Analysis (Individual Mean Mitigation Calcualtor), there is a DR% listed for each class, and I was wondering how these values were derived, and if they were used in the final comparison. Furthermore, the way DC/FL heals are modelled affects how valid the comparisons are, as they can easily be overstated due to the poetntial to overheal. |
|||
|
02-11-2012, 02:18 AM
(This post was last modified: 02-11-2012 02:31 AM by Neokarasu.)
Post: #6
|
|||
|
|||
RE: Tanking Stat Distribution Analysis
(02-10-2012 07:58 PM)Alratan Wrote: Dark Ward is taken as 100% uptime: Code: %SA have 15% shield from Dark Charge, 15% shield from Dark WardNo long cooldown (Deflection, Saber Ward, etc.) is taken into account. None of the self-heal is taken into account if you look at the SA code. It is essentially the EDR (1 - "Squishiness") calculation that we've done previously and the result can be seen in Laguna's thread. I mean, it's a good work but it's essentially nothing new. LagunaD Wrote:To include the effect of Wither on any class, multiply Squishiness by 0.95. Interesting. He calculated Wither as additive to DR instead of multiplicative. Code: % assume 5% reduced damage from wither (assume up all times, tanking singleI think multiplicative makes more sense. My compilation of stuff |
|||
|
02-11-2012, 03:44 AM
(This post was last modified: 02-11-2012 03:47 AM by Coriolis.)
Post: #7
|
|||
|
|||
|
RE: Tanking Stat Distribution Analysis
Being a jugg and having played with Laguna's spreadsheet alot, the results are not suprising. Our crappy set bonuses and the lack of options for def gear are definetly a problem relative to assasins (haven't looked at PT set bonuses).
However, I do think that our superior activated cooldowns somewhat make up for our lower base mitigation. The problem with those is that their worth is not easily judged by such an analysis. Although you could just throw them in multiplying their effect by the ratio of the time they are up by their c/d - that would underestimate their effect, but at least it would put it in there in some form. Wither would have to be multiplicative since it's applied to the boss's damage instead of your own DR. Should only add with other damage reducing abilities (which is only other wither's as far as I know). That should lower assasin DR a bit. As for self-heals - if you're going to do that you should also include the absorb shield from force scream for SW. Should be easier to do since it doesn't overheal and it's only limited by C/D and (and rage, but that is usually not too much of an issue). I wouldn't bother though, the mitigation from such abilities is not going to be an apples to apples comparison to mitigation from def/absorb, since the effective % reduction depends on how hard the boss hits, and hence depends upon the encounter. Dorfl/Coriolis of No One Cares, Shadow Hand |
|||
|
02-11-2012, 04:48 AM
Post: #8
|
|||
|
|||
RE: Tanking Stat Distribution Analysis
(02-10-2012 07:58 PM)Alratan Wrote: That SJ < SA intrigues me, especially the extent of it, although the PT > SA/SJ doesn't (even if minor).
Quote:Dark Ward is taken as 100% uptime:correct. If geared correctly it doesn't fall off too too often... Tell me if you want me to change that. Quote:No long cooldown (Deflection, Saber Ward, etc.) is taken into account.You're right, not for the optimum stats charts, whoops. Note that +DR cooldowns DO NOT change optimum stat distribution. Cooldowns that give +% to defense would, however. It is taken into account for the calculator. Quote:None of the self-heal is taken into account if you look at the SA code.Correct. It's done after the fact in excel. Quote:Quote:LagunaD Wrote: I was following the way Gankstah did additions to defense%. If this is not the case, tell me. It's an easy change (DR does not affect optimal stat distribution). (02-11-2012 03:44 AM)Coriolis Wrote: Wither would have to be multiplicative since it's applied to the boss's damage instead of your own DR. Should only add with other damage reducing abilities (which is only other wither's as far as I know). That should lower assasin DR a bit.and BH DR (i did it the same way). (02-11-2012 03:44 AM)Coriolis Wrote: As for self-heals - if you're going to do that you should also include the absorb shield from force scream for SW. Should be easier to do since it doesn't overheal and it's only limited by C/D and (and rage, but that is usually not too much of an issue). I wouldn't bother though, the mitigation from such abilities is not going to be an apples to apples comparison to mitigation from def/absorb, since the effective % reduction depends on how hard the boss hits, and hence depends upon the encounter.I did. that's why it says "w/ sonic barrier" |
|||
|
02-11-2012, 08:10 AM
(This post was last modified: 02-11-2012 08:11 AM by Pijinz.)
Post: #9
|
|||
|
|||
RE: Tanking Stat Distribution Analysis
(02-11-2012 04:48 AM)Agrath Wrote: I was following the way Gankstah did additions to defense%. I'd always presumed multiplicative, but this should be easy enough to test. Do it in a duel so you know the targets armour/DR exactly, then use a DoT with the same damage per tick, or (my favourite) Force Lightning (same damage per tick, and mitigated by armour). Edit: Oh btw, fantastic work. Thanks for posting ^^ |
|||
|
02-12-2012, 09:57 AM
Post: #10
|
|||
|
|||
|
RE: Tanking Stat Distribution Analysis
While it makes next to no difference mitigation wise, the numbers on Sonic Barrier are a little off. My recorded testing has shown that it's values are roughly 700 without the set bonus and 850 with, as posted here: http://sithwarrior.com/forums/Thread-Imm...8#pid13808
Otherwise, great post. |
|||
|
« Next Oldest | Next Newest »
|