#include "CullingOfStratholmeStrategy.h" #include "CullingOfStratholmeMultipliers.h" void WotlkDungeonCoSStrategy::InitTriggers(std::vector &triggers) { // Meathook // Can tank this in a fixed position to allow healer to LoS the stun, probably not necessary // Salramm the Fleshcrafter triggers.push_back(new TriggerNode("explode ghoul", { NextAction("explode ghoul spread", ACTION_MOVE + 5) })); // Chrono-Lord Epoch // Not sure if this actually works, I think I've seen him charge melee characters..? triggers.push_back(new TriggerNode("epoch ranged", { NextAction("epoch stack", ACTION_MOVE + 5) })); // Mal'Ganis // Infinite Corruptor (Heroic only) } void WotlkDungeonCoSStrategy::InitMultipliers(std::vector &multipliers) { multipliers.push_back(new EpochMultiplier(botAI)); }