Skip to content

Commit

Permalink
[Gear] Flame Licked Stone
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorovon committed Feb 12, 2023
1 parent 959b631 commit 6d46aec
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions engine/player/unique_gear_dragonflight.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4231,6 +4231,27 @@ void echoing_thunder_stone( special_effect_t& effect )
}
} );
}

/**Flame Licked Stone
* id=404865 Primordial Stones aura
* id=402930 driver
* id=403225 DoT
*/
void flame_licked_stone( special_effect_t& effect )
{
struct flame_t : public generic_proc_t
{
flame_t( const special_effect_t& e ) :
generic_proc_t( e, "flame", e.trigger() )
{
base_td = e.driver()->effectN( 1 ).average( e.item );
}
};

effect.execute_action = new flame_t( effect );

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

void register_special_effects()
Expand Down Expand Up @@ -4359,6 +4380,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 );

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

0 comments on commit 6d46aec

Please sign in to comment.