File daybreak.lua changed (mode: 100644) (index 96b3046..f3870cc) |
... |
... |
end |
481 |
481 |
|
|
482 |
482 |
local function roleFrameEventProcessor() |
local function roleFrameEventProcessor() |
483 |
483 |
local unitDesignation = 'player' |
local unitDesignation = 'player' |
484 |
|
local roleDesignation = getEstimatedBattlegroundRole(unitDesignation) |
|
485 |
|
UnitSetRole(unitDesignation, roleDesignation) |
|
|
484 |
|
local roleDesignationGuess = getEstimatedBattlegroundRole(unitDesignation) |
|
485 |
|
if roleDesignationGuess ~= UnitGroupRolesAssigned(unitDesignation) then |
|
486 |
|
UnitSetRole(unitDesignation, roleDesignationGuess) |
|
487 |
|
end |
486 |
488 |
end |
end |
487 |
489 |
|
|
488 |
490 |
local function initRole(rootFrame) |
local function initRole(rootFrame) |
|
... |
... |
local function initCyclone(rootFrame) |
941 |
943 |
'Holy Word: Chastise', |
'Holy Word: Chastise', |
942 |
944 |
'Intimidating Shout', |
'Intimidating Shout', |
943 |
945 |
'Sap', |
'Sap', |
|
946 |
|
'Repentance', |
944 |
947 |
--[[ Curse ]]-- |
--[[ Curse ]]-- |
945 |
948 |
'Hex', |
'Hex', |
946 |
949 |
--[[ Stun ]]-- |
--[[ Stun ]]-- |
|
... |
... |
Query if the player character invested into Blessed Life talent. |
1263 |
1266 |
@treturn bool |
@treturn bool |
1264 |
1267 |
]] |
]] |
1265 |
1268 |
local function isBlessedLifePresent() |
local function isBlessedLifePresent() |
|
1269 |
|
local _, classDesignation = UnitClass('player') |
|
1270 |
|
if 'PALADIN' ~= classDesignation then |
|
1271 |
|
return |
|
1272 |
|
end |
|
1273 |
|
|
1266 |
1274 |
local specNumber = 1 |
local specNumber = 1 |
1267 |
1275 |
local talentNumber = 19 |
local talentNumber = 19 |
1268 |
1276 |
local _, _, _, _, a = GetTalentInfo(specNumber, talentNumber) |
local _, _, _, _, a = GetTalentInfo(specNumber, talentNumber) |
|
... |
... |
local function initSerendipity(rootFrame) |
1390 |
1398 |
end |
end |
1391 |
1399 |
|
|
1392 |
1400 |
--[[ Priest ]]-- |
--[[ Priest ]]-- |
1393 |
|
createButton(0, 0, 'Chakra: Chastise', rootFrame) |
|
1394 |
|
createButton(0, 0, 'Chakra: Sanctuary', rootFrame) |
|
1395 |
|
createButton(0, 0, 'Chakra: Serenity', rootFrame) |
|
1396 |
|
createButton(0, 1, 'Chakra', rootFrame) |
|
|
1401 |
|
local innerFireFrame = CreateFrame('FRAME', 'DaybreakOverlayPriestInnerFireFrame', rootFrame) |
|
1402 |
|
innerFireFrame:SetSize(16, 16) |
|
1403 |
|
innerFireFrame:SetPoint('BOTTOMLEFT', 16*22, 16*2) |
|
1404 |
|
local duration = getArchetypeDesignationDuration() |
|
1405 |
|
createButton(0, 0, 'Inner Fire', innerFireFrame, duration, 'player', 'PLAYER HELPFUL', 14, 2) |
|
1406 |
|
createButton(0, 0, 'Inner Will', innerFireFrame, duration, 'player', 'PLAYER HELPFUL', 14, 2) |
|
1407 |
|
createButton(1, 1, 'Shadow Protection', innerFireFrame, duration, 'player', 'HELPFUL', 14, 2) |
|
1408 |
|
createButton(1, 0, 'Power Word: Fortitude', innerFireFrame, duration, 'player', 'HELPFUL', 14, 2) |
|
1409 |
|
|
|
1410 |
|
|
|
1411 |
|
createButton(11, 0, 'Chakra: Chastise', rootFrame) |
|
1412 |
|
createButton(11, 0, 'Chakra: Sanctuary', rootFrame) |
|
1413 |
|
createButton(11, 0, 'Chakra: Serenity', rootFrame) |
|
1414 |
|
createButton(0, 0, 'Chakra', rootFrame) |
1397 |
1415 |
createButton(0, 1, 'Blessed Resilience', rootFrame) |
createButton(0, 1, 'Blessed Resilience', rootFrame) |
1398 |
1416 |
--[[ d ]]-- |
--[[ d ]]-- |
1399 |
1417 |
createButton(0, 0, 'Inner Focus', rootFrame) |
createButton(0, 0, 'Inner Focus', rootFrame) |
1400 |
1418 |
createButton(0, 1, 'Pain Suppression', rootFrame) |
createButton(0, 1, 'Pain Suppression', rootFrame) |
1401 |
1419 |
createButton(0, 2, 'Power Infusion', rootFrame) |
createButton(0, 2, 'Power Infusion', rootFrame) |
|
1420 |
|
local absorb = getArchetypeDesignationAbsorption() |
|
1421 |
|
createButton(10, 0, 'Divine Aegis', rootFrame, absorb, 'player', 'HELPFUL') |
|
1422 |
|
createButton(10, 1, 'Grace', rootFrame) |
1402 |
1423 |
|
|
1403 |
1424 |
createButton(1, 2, 'Borrowed Time', rootFrame) |
createButton(1, 2, 'Borrowed Time', rootFrame) |
1404 |
1425 |
createButton(1, 3, 'Pain Supression', rootFrame) |
createButton(1, 3, 'Pain Supression', rootFrame) |
|
... |
... |
local function initSerendipity(rootFrame) |
1412 |
1433 |
--[[ Priest general ]]-- |
--[[ Priest general ]]-- |
1413 |
1434 |
createButton(9, 0, 'Inspiration', rootFrame) |
createButton(9, 0, 'Inspiration', rootFrame) |
1414 |
1435 |
createButton(9, 1, 'Renew', rootFrame) |
createButton(9, 1, 'Renew', rootFrame) |
1415 |
|
local arch = getArchetypeDesignationAbsorption() |
|
1416 |
|
createButton(9, 2, 'Power Word: Shield', rootFrame, arch, 'player', 'HELPFUL') |
|
|
1436 |
|
createButton(8, 2, 'Weakened Soul', rootFrame, duration, 'player', 'HARMFUL') |
|
1437 |
|
createButton(9, 2, 'Power Word: Shield', rootFrame, absorb, 'player', 'HELPFUL') |
1417 |
1438 |
createButton(9, 3, 'Fear Ward', rootFrame) |
createButton(9, 3, 'Fear Ward', rootFrame) |
1418 |
1439 |
createButton(10, 2, 'Body and Soul', rootFrame) |
createButton(10, 2, 'Body and Soul', rootFrame) |
1419 |
1440 |
|
|