Added Frostfire spec for fire mage (#936)

This commit is contained in:
achyles222
2025-02-03 12:48:41 +01:00
committed by GitHub
parent fef67081ec
commit 1c2ec60e6b
6 changed files with 93 additions and 1 deletions

View File

@@ -201,4 +201,10 @@ public:
bool IsActive() override;
};
class FrostfireBoltTrigger : public DebuffTrigger
{
public:
FrostfireBoltTrigger(PlayerbotAI* botAI) : DebuffTrigger(botAI, "frostfire bolt", 1, true) {}
};
#endif