Naxx loatheb strategy

This commit is contained in:
Yunfan Li
2024-02-08 14:51:07 +08:00
parent 74830ea137
commit 479908e778
10 changed files with 175 additions and 172 deletions

View File

@@ -215,11 +215,14 @@ class GluthMainTankMortalWoundTrigger : public Trigger
GluthBossHelper helper;
};
// class LoathebTrigger : public BossPhaseTrigger
// {
// public:
// LoathebTrigger(PlayerbotAI* ai) : BossPhaseTrigger(ai, "loatheb", 0, "loatheb trigger") {}
// };
class LoathebTrigger : public Trigger
{
public:
LoathebTrigger(PlayerbotAI* ai) : Trigger(ai, "loatheb"), helper(ai) {}
bool IsActive() override;
private:
LoathebBossHelper helper;
};
// template BossEventTrigger<class boss_grobbulus::boss_grobbulusAI>;