vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | --[[ BestBuff_Defaults.lua |
2 | |||
3 | This is used by BestBuff to load default buffs, in the event |
||
4 | that it finds no settings in SavedVariables.lua. |
||
5 | |||
6 | If you tend to delete that file a lot (like I do), then you |
||
7 | may want to add new default buffs here. To add them, add a |
||
8 | line below in this format: |
||
9 | |||
10 | BBDefaultBuffs["Buff Name"] = { levels }; |
||
11 | |||
12 | levels are the levels the buff is learned, separated by commas. |
||
13 | ]] |
||
14 | |||
15 | |||
16 | BBDefaultBuffs = {}; |
||
17 | BBDefaultBuffs["Power Word: Fortitude"] = { 1,12,24,36,48,60 }; |
||
18 | BBDefaultBuffs["Renew"] = { 8,14,20,26,32,38,44,50,56 }; |
||
19 | BBDefaultBuffs["Power Word: Shield"] = { 6,12,18,24,30,36,42,48,54,60 }; |
||
20 | BBDefaultBuffs["Arcane Intellect"] = { 1,14,28,42,56 }; |
||
21 | BBDefaultBuffs["Mark of the Wild"] = { 1,10,20,30,40,50,60 }; |
||
22 | BBDefaultBuffs["Regrowth"] = { 12,18,24,30,36,42,48,54,60 }; |
||
23 | BBDefaultBuffs["Rejuvenation"] = { 4,10,16,22,28,34,40,46,52,58 }; |
||
24 | BBDefaultBuffs["Thorns"] = { 6,14,24,34,44,54 }; |
||
25 | BBDefaultBuffs["Divine Spirit"] = { 40,42,54 }; |
||
26 | BBDefaultBuffs["Shadow Protection"] = { 30,42,56 }; |
||
27 | BBDefaultBuffs["Blessing of Might"] = { 4,12,22,32,42,52 }; |
||
28 | BBDefaultBuffs["Blessing of Light"] = { 40,50,60 }; |
||
29 | BBDefaultBuffs["Blessing of Protection"] = { 10,24,38 }; |
||
30 | BBDefaultBuffs["Blessing of Sacrifice"] = { 46,54 }; |
||
31 | BBDefaultBuffs["Blessing of Sanctuary"] = { 30,40,50,60 }; |
||
32 | BBDefaultBuffs["Blessing of Wisdom"] = { 14,24,34,44,54,60 }; |
||
33 | BBDefaultBuffs["Amplify Magic"] = { 18,30,42,54 }; |
||
34 | BBDefaultBuffs["Dampen Magic"] = { 12,24,36,48,60 }; |
||
35 | |||
36 | BBDefault_SelfCast = 0; -- <- change to 1 to make self cast default |
||
37 | BBDefault_Notify = 0; -- <- change to 1 to make notify (spam) default |
||
38 |