Improvement hunter track and spell

This commit is contained in:
Yunfan Li
2025-01-18 23:47:37 +08:00
parent 3523a65ff8
commit 006e0a03c8
5 changed files with 54 additions and 4 deletions

View File

@@ -101,10 +101,18 @@ public:
TrueshotAuraTrigger(PlayerbotAI* botAI) : BuffTrigger(botAI, "trueshot aura") {}
};
class NoTrackTrigger : public BuffTrigger
{
public:
NoTrackTrigger(PlayerbotAI* botAI) : BuffTrigger(botAI, "no track") {}
bool IsActive() override;
};
class SerpentStingOnAttackerTrigger : public DebuffOnAttackerTrigger
{
public:
SerpentStingOnAttackerTrigger(PlayerbotAI* botAI) : DebuffOnAttackerTrigger(botAI, "serpent sting", true) {}
bool IsActive() override;
};
BEGIN_TRIGGER(HunterPetNotHappy, Trigger)