We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96643ef commit 4fb1271Copy full SHA for 4fb1271
engine/class_modules/sc_evoker.cpp
@@ -6411,6 +6411,11 @@ struct breath_of_eons_damage_t : public evoker_external_action_t<spell_t>
6411
if ( p( s )->close_as_clutchmates )
6412
m *= 1 + p( s )->spec.close_as_clutchmates->effectN( 1 ).percent();
6413
6414
+ if ( p( s )->allies_with_my_ebon.size() > p( s )->spec.ebon_might->effectN( 3 ).base_value() )
6415
+ {
6416
+ m *= sqrt( p( s )->spec.ebon_might->effectN( 3 ).base_value() / p( s )->allies_with_my_ebon.size() );
6417
+ }
6418
+
6419
return m;
6420
}
6421
0 commit comments