Skip to content

Commit

Permalink
[Gear] Freezing Ice Stone
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorovon committed Feb 12, 2023
1 parent 6d46aec commit 262aa20
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions engine/player/unique_gear_dragonflight.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4252,6 +4252,18 @@ void flame_licked_stone( special_effect_t& effect )

new dbc_proc_callback_t( effect.player, effect );
}

/**Freezing Ice Stone
* id=404874 Primordial Stones aura
* id=402940 driver
* id=403391 damage
*/
void freezing_ice_stone( special_effect_t& effect )
{
effect.discharge_amount = effect.driver()->effectN( 1 ).average( effect.item );

new dbc_proc_callback_t( effect.player, effect );
}
}

void register_special_effects()
Expand Down Expand Up @@ -4381,6 +4393,7 @@ void register_special_effects()
// Primordial Stones
register_special_effect( 402929, primordial_stones::echoing_thunder_stone );
register_special_effect( 402930, primordial_stones::flame_licked_stone );
register_special_effect( 402940, primordial_stones::freezing_ice_stone );

// Disabled
register_special_effect( 382108, DISABLED_EFFECT ); // burgeoning seed
Expand Down

0 comments on commit 262aa20

Please sign in to comment.