fan of knives for rogue

This commit is contained in:
Yunfan Li
2023-08-29 21:35:01 +08:00
parent 8f20e721af
commit 19191d64f3
3 changed files with 13 additions and 0 deletions

View File

@@ -142,4 +142,11 @@ class UseInstantPoisonAction : public UseItemAction
virtual bool Execute(Event event) override;
virtual bool isPossible() override;
};
class FanOfKnivesAction : public CastMeleeSpellAction
{
public:
FanOfKnivesAction(PlayerbotAI* ai) : CastMeleeSpellAction(ai, "fan of knives") {}
};
#endif