Skip to content

Commit

Permalink
[Druid] Feral
Browse files Browse the repository at this point in the history
 - Implement Shadow Thrash benefitting from Luffa Wrappings and Jagged Wounds.
  • Loading branch information
aggixx committed Oct 6, 2016
1 parent fc2f71d commit 5a2d5bc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions engine/class_modules/sc_druid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3119,6 +3119,9 @@ struct thrash_cat_t : public cat_attack_t
{
background = true;
tick_action = new shadow_thrash_tick_t( p );

base_tick_time *= 1.0 + p -> talent.jagged_wounds -> effectN( 1 ).percent();
dot_duration *= 1.0 + p -> talent.jagged_wounds -> effectN( 2 ).percent();
}
};

Expand Down Expand Up @@ -8434,6 +8437,7 @@ struct druid_module_t : public module_t
register_special_effect( 208219, skysecs_hold_t() );
register_special_effect( 208190, the_emerald_dreamcatcher_t(), true );
register_special_effect( 208681, luffa_wrappings_t<thrash_cat_t>( "thrash_cat" ) );
register_special_effect( 208681, luffa_wrappings_t<thrash_cat_t::shadow_thrash_t::shadow_thrash_tick_t>( "shadow_thrash" ) );
register_special_effect( 208681, luffa_wrappings_t<thrash_bear_t>( "thrash_bear" ) );
// register_special_effect( 208220, amanthuls_wisdom );
// register_special_effect( 207943, edraith_bonds_of_aglaya );
Expand Down

0 comments on commit 5a2d5bc

Please sign in to comment.