From 5de4d30959c54c67d0a810181a7a733b12595a2f Mon Sep 17 00:00:00 2001 From: Jayezi <4423285+Jayezi@users.noreply.github.com> Date: Mon, 5 Feb 2018 21:38:48 -0600 Subject: [PATCH] [Hunter] Beast Mastery wheelchair buffs --- engine/class_modules/sc_hunter.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/engine/class_modules/sc_hunter.cpp b/engine/class_modules/sc_hunter.cpp index 1f134968646..32d00f842cd 100644 --- a/engine/class_modules/sc_hunter.cpp +++ b/engine/class_modules/sc_hunter.cpp @@ -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 {}