concentration aura

This commit is contained in:
Yunfan Li
2023-08-27 00:04:15 +08:00
parent 8bd0441755
commit a7a1df89a1
5 changed files with 25 additions and 8 deletions

View File

@@ -54,6 +54,15 @@ class PaladinBuffAoeStrategy : public Strategy
std::string const getName() override { return "baoe"; }
};
class PaladinBuffCastStrategy : public Strategy
{
public:
PaladinBuffCastStrategy(PlayerbotAI* botAI) : Strategy(botAI) { }
void InitTriggers(std::vector<TriggerNode*>& triggers) override;
std::string const getName() override { return "bcast"; }
};
class PaladinBuffThreatStrategy : public Strategy
{
public: