fix(Scripts/TheEye): Advisors add Sanguinar's Bellowing Roar (#20620)

add roar
This commit is contained in:
Jelle Meeus
2024-11-18 09:44:45 +01:00
committed by GitHub
parent 2f9f2206df
commit 5ca9b5f942

View File

@@ -817,7 +817,12 @@ struct npc_lord_sanguinar : public advisor_baseAI
{
npc_lord_sanguinar(Creature* creature) : advisor_baseAI(creature) { };
void ScheduleEvents() override {}
void ScheduleEvents() override
{
ScheduleTimedEvent(0s, 2s, [&]{
DoCastSelf(SPELL_BELLOWING_ROAR);
}, 30s, 40s);
}
};
struct npc_capernian : public advisor_baseAI