forked from wowsims/cata
-
Notifications
You must be signed in to change notification settings - Fork 38
[Feature][Shadow] Initial implementation for the Shadow Spec #59
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
Merged
Merged
Changes from 37 commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
aee7d36
[Feature][Class] Initial implementation for shadow
9376047
[Feature][Shadow] Implement T14 and T15
dc0aba5
[Feature][Shadow] Cleanup code
c084e55
Merge branch 'feature/generic-resources' into feature/shadow
82bb2e8
[Feature] Generic Resource: Add missing callback invoke
ecb66e7
[Feature][Shadow] Add T16 set
9ec9dd8
Merge branch 'feature/generic-resources' into feature/shadow
d6c3c30
Merge branch 'feature/generic-resources' into feature/shadow
0ba0903
[Feature][Shadow] Fix ShadowOrb bar
d8f06e7
[Feature][Shadow] Add first set of presets and level 90 support
8107f0c
Merge branch 'master' into feature/shadow
fb358e5
[Feature][Shadow] Update to new Buffs
1f05c91
Merge branch 'master' into feature/shadow
3380820
Merge branch 'master' into feature/shadow
3fecb64
Merge branch 'master' into feature/shadow
7bfff34
[Feature][Shadow] Fixup UI mastery scaling
1165247
[Feature][Shadow] Fix Spirit/Hit scaling
6fd67ef
Merge branch 'master' into feature/shadow
1fcb2fe
Merge branch 'feature/lvl-90' into feature/shadow
bac2bf5
[Feature][Shadow] Update Shadow
79fac5c
[Feature][Shadow] Update P1 Gearset
0e3b711
[Feature][MoP] Remove int/mana scaling
064cd6b
[Feature][Shadow] Fix shadow bugs
aef95f5
Merge branch 'master' into feature/shadow
7f920ad
[Feature][Priest] Fixup bugs
db8a959
Merge branch 'master' into feature/shadow
265af98
[Featuer][Shadow] Fixup VT mana regen
ce4e7e9
[Feature][Shadow] Reenable Shadowcrawl
a94b138
[Feature][Shadow] Fix Mindbender and Fiend
5119204
[Feature][Shadow] Add melee haste scaling option
31d8aa7
Merge branch 'fix/bloodlust' into feature/shadow
8f075fa
[Fix][Pet] Dynamic haste scaling for temporary pets
f54e934
Merge branch 'master' into feature/shadow
f6eb78c
[Feature][Shadow] Migrate to new PetConfig
0c81707
[Priest] Update UI to Alpha
4a478f1
[Priest] Fixup haste scaling
fbc8baa
[Priest] Add new presets
8a51033
[Priest] Updates from PR feedback
987b949
[Priest] Cleanup legacy reforge code
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| package priest | ||
|
|
||
| import ( | ||
| "time" | ||
|
|
||
| "github.com/wowsims/mop/sim/core" | ||
| "github.com/wowsims/mop/sim/core/proto" | ||
| ) | ||
|
|
||
| func (priest *Priest) ApplyGlyphs() { | ||
|
|
||
| // Glyph of Dispersion | ||
| // Glyph of Mindspike | ||
| // Glyph of Shadow Word Death | ||
| if priest.HasMinorGlyph(proto.PriestMinorGlyph_GlyphOfTheSha) { | ||
| priest.OnSpellRegistered(func(spell *core.Spell) { | ||
| if spell.ClassSpellMask&(PriestSpellMindBender|PriestSpellShadowFiend) > 0 { | ||
| spell.DefaultCast.GCD = time.Duration(0) | ||
InDebt marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| } | ||
| }) | ||
| } | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.