mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-03-01 06:45:55 +00:00
- Added generic boss aura triggers and actions (#1242)
- Added Freya strategy - Added or updated aura resistance strategies for ulduar
This commit is contained in:
@@ -105,13 +105,39 @@ void RaidUlduarStrategy::InitTriggers(std::vector<TriggerNode*>& triggers)
|
||||
//
|
||||
// Freya
|
||||
//
|
||||
triggers.push_back(new TriggerNode(
|
||||
"freya tank near eonars gift",
|
||||
NextAction::array(0, new NextAction("freya mark eonars gift", ACTION_RAID + 1), nullptr)));
|
||||
|
||||
triggers.push_back(new TriggerNode(
|
||||
"freya near nature bomb",
|
||||
NextAction::array(0, new NextAction("freya move away nature bomb", ACTION_RAID), nullptr)));
|
||||
|
||||
triggers.push_back(new TriggerNode(
|
||||
"freya nature resistance trigger",
|
||||
NextAction::array(0, new NextAction("freya nature resistance action", ACTION_RAID), nullptr)));
|
||||
|
||||
triggers.push_back(new TriggerNode(
|
||||
"freya fire resistance trigger",
|
||||
NextAction::array(0, new NextAction("freya fire resistance action", ACTION_RAID), nullptr)));
|
||||
|
||||
triggers.push_back(new TriggerNode(
|
||||
"freya mark dps target trigger",
|
||||
NextAction::array(0, new NextAction("freya mark dps target action", ACTION_RAID), nullptr)));
|
||||
|
||||
triggers.push_back(new TriggerNode(
|
||||
"freya move to healing spore trigger",
|
||||
NextAction::array(0, new NextAction("freya move to healing spore action", ACTION_RAID), nullptr)));
|
||||
|
||||
//
|
||||
// Thorim
|
||||
//
|
||||
triggers.push_back(new TriggerNode(
|
||||
"thorim nature resistance trigger",
|
||||
NextAction::array(0, new NextAction("thorim nature resistance action", ACTION_RAID), nullptr)));
|
||||
|
||||
//
|
||||
// Mimiron
|
||||
//
|
||||
triggers.push_back(new TriggerNode(
|
||||
"mimiron fire resistance trigger",
|
||||
NextAction::array(0, new NextAction("mimiron fire resistance action", ACTION_RAID), nullptr)));
|
||||
}
|
||||
|
||||
void RaidUlduarStrategy::InitMultipliers(std::vector<Multiplier*>& multipliers)
|
||||
|
||||
Reference in New Issue
Block a user