-
Notifications
You must be signed in to change notification settings - Fork 650
Added basic support for Protection Warrior. #363
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
Conversation
Created the basic module for Protection Warriors in CastEfficiency, AlwaysBeCasting, and Spells. Created DamageDone, DamageTaken, and HealingDone Cores.
This reverts commit feeb2f8.
Created the basic module for Protection Warriors in CastEfficiency, AlwaysBeCasting, and Spells. Created DamageDone, DamageTaken, and HealingDone Cores.
This reverts commit feeb2f8.
Added basic modules for Protection Warrior. Added
MartijnHols
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR, good first PR! I left a few comments that you could consider for a future PR. Merging this in a second (I'll be making a small change, so you'll need to pull and merge).
|
|
||
| import StatisticBox, { STATISTIC_ORDER } from 'Main/StatisticBox'; | ||
|
|
||
| class HealingDone extends CoreHealingDone { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Recent changes made it so this can be replaced with 2 lines in your CombatLogParser to get a version including a healing vs overhealing bar; https://github.com/MartijnHols/WoWAnalyzer/blob/f90370b34593f84fa0d3d90a92a551c9c6e7660d/src/Parser/HolyPaladin/CombatLogParser.js#L67
| getCooldown: haste => 15 | ||
| charges: 2, | ||
| }, | ||
| { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Things like this should probably get
noSuggestion: true,
noCanBeImproved: true,| @@ -0,0 +1,7 @@ | |||
| import CoreDamageTaken from 'Parser/Core/Modules/DamageTaken'; | |||
|
|
|||
| class DamageTaken extends CoreDamageTaken { | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comment below
|
Thank you! I'll work on those and get them all fixed for sure. New to all this, very excited to get the rest of it up and running! |
Added the first steps to creating the module for the spec. Has components for damage done & taken, healing done, and added abilities into the class spell folder.