Unholy DK

This commit is contained in:
Yunfan Li
2024-04-10 19:10:47 +08:00
parent d01953d2e0
commit 9eb9fd3a7d
4 changed files with 31 additions and 10 deletions

View File

@@ -146,4 +146,11 @@ class DesolationTrigger : public BuffTrigger
bool IsActive() override;
};
class DeathAndDecayCooldownTrigger : public SpellCooldownTrigger
{
public:
DeathAndDecayCooldownTrigger(PlayerbotAI* botAI) : SpellCooldownTrigger(botAI, "death and decay") { }
bool IsActive() override;
};
#endif