mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-23 13:36:23 +00:00
PremadeSpecGlyph config (unimplemented)
This commit is contained in:
@@ -18,6 +18,7 @@ class ShadowPriestStrategyActionNodeFactory : public NamedObjectFactory<ActionNo
|
||||
creators["mind blast"] = &mind_blast;
|
||||
creators["dispersion"] = &dispersion;
|
||||
creators["mind flay"] = &mind_flay;
|
||||
creators["smite"] = &smite;
|
||||
}
|
||||
|
||||
private:
|
||||
@@ -32,10 +33,19 @@ class ShadowPriestStrategyActionNodeFactory : public NamedObjectFactory<ActionNo
|
||||
static ActionNode* mind_flay(PlayerbotAI* botAI)
|
||||
{
|
||||
return new ActionNode ("mind flay",
|
||||
/*P*/ nullptr,
|
||||
/*A*/ NextAction::array(0, new NextAction("smite"), nullptr),
|
||||
/*C*/ nullptr);
|
||||
}
|
||||
|
||||
static ActionNode* smite(PlayerbotAI* botAI)
|
||||
{
|
||||
return new ActionNode ("smite",
|
||||
/*P*/ nullptr,
|
||||
/*A*/ NextAction::array(0, new NextAction("shoot"), nullptr),
|
||||
/*C*/ nullptr);
|
||||
}
|
||||
|
||||
static ActionNode* dispersion(PlayerbotAI* botAI)
|
||||
{
|
||||
return new ActionNode ("dispersion",
|
||||
|
||||
Reference in New Issue
Block a user