Cat druid energy control

This commit is contained in:
Yunfan Li
2024-09-02 00:30:10 +08:00
parent aab8cf04d3
commit 4c77f71bd4
5 changed files with 32 additions and 6 deletions

View File

@@ -126,6 +126,17 @@ private:
float lifeTime;
};
class ComboPointsNotFullTrigger : public StatAvailable
{
public:
ComboPointsNotFullTrigger(PlayerbotAI* botAI, int32 amount = 5, std::string const name = "combo points not full")
: StatAvailable(botAI, amount, name)
{
}
bool IsActive() override;
};
class LoseAggroTrigger : public Trigger
{
public: