Discipline priest shield

This commit is contained in:
Yunfan Li
2023-07-24 14:42:40 +08:00
parent f3a0a53457
commit f8cc3810b6
4 changed files with 65 additions and 6 deletions

View File

@@ -149,4 +149,11 @@ public:
CastShadowfiendAction(PlayerbotAI* ai) : CastSpellAction(ai, "shadowfiend") {}
virtual std::string const GetTargetName() { return "current target"; }
};
class CastPowerWordShieldOnAlmostFullHealthBelow : public HealPartyMemberAction {
public:
CastPowerWordShieldOnAlmostFullHealthBelow(PlayerbotAI* ai) : HealPartyMemberAction(ai, "power word: shield") {}
bool isUseful() override;
Unit* GetTarget() override;
};
#endif