Skip to content

Commit

Permalink
[Hunter] Beast Mastery wheelchair buffs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayezi committed Feb 6, 2018
1 parent 3462639 commit 5de4d30
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions engine/class_modules/sc_hunter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7235,6 +7235,17 @@ struct hunter_module_t: public module_t

void register_hotfixes() const override
{
hotfix::register_effect( "Hunter", "2018-02-06", "Beast Mastery: All damage increased by 2.5%.", 179698 )
.field( "base_value" )
.operation( hotfix::HOTFIX_SET )
.modifier( 14.5 )
.verification_value( 12 );

hotfix::register_effect( "Hunter", "2018-02-06", "Serpentstalker Guise 4-piece bonus now causes Kill Command to reduce the cooldown of Aspect of the Wild by 3 seconds (was 2.5 seconds).", 471340 )
.field( "base_value" )
.operation( hotfix::HOTFIX_SET )
.modifier( 3000 )
.verification_value( 2500 );
}

void combat_begin( sim_t* ) const override {}
Expand Down

0 comments on commit 5de4d30

Please sign in to comment.