Skip to main content

wowlab_engine_content/hooks/retribution_paladin/
mod.rs

1crate::hooks::define_spec_module! {
2    modules [bugs, config, handler, hooks, templar];
3    exports {
4        pub(crate) use handler::RetributionHandler;
5        pub(crate) use hooks::{
6            avenging_wrath_expire_hook, avenging_wrath_hook, blade_of_justice_hook,
7            blade_of_vengeance_trigger_disabled, divine_storm_hook, divine_toll_hook,
8            execution_sentence_expire_hook, execution_sentence_hook, hammer_of_wrath_hook,
9            judgment_hook, mastery, swing_hook, templars_verdict_hook,
10        };
11        pub(crate) use templar::{
12            divine_hammer_pulse_hook, hammer_of_light_hook, lights_deliverance_check_hook,
13            sth_pulse_hook, wake_of_ashes_hook,
14        };
15    }
16}