vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | BINDING_HEADER_NECRONOMICON = "Necronomicon" |
2 | -- This statement will load any translation that is present or default to English. |
||
3 | if( not ace:LoadTranslation("Necronomicon") ) then |
||
4 | |||
5 | NECRONOMICON_MSG_COLOR = "|cffcceebb"; |
||
6 | NECRONOMICON_DISPLAY_OPTION = "[|cfff5f530%s|cff0099CC]"; |
||
7 | |||
8 | NECRONOMICON_CONST = { |
||
9 | |||
10 | Title = "Necronomicon", |
||
11 | Version = "0.7", |
||
12 | Desc = "Necronomicon, Ace'd Necrosis", |
||
13 | Timerheader = "Spell Timers", |
||
14 | UpdateInterval = 0.2, |
||
15 | |||
16 | ChatCmd = {"/necro", "/necronomicon", "/Necronomicon"}, |
||
17 | |||
18 | ChatOpt = { |
||
19 | { |
||
20 | option = "reset", |
||
21 | desc = "Reset the window positions.", |
||
22 | method = "chatReset", |
||
23 | }, |
||
24 | { |
||
25 | option = "feldom", |
||
26 | desc = "Set the Fel Domination modifier: ctrl alt shift none", |
||
27 | method = "chatFelDom", |
||
28 | }, |
||
29 | { |
||
30 | option = "closeonclick", |
||
31 | desc = "Toggle closing the pet menu on clicking a button", |
||
32 | method = "chatCloseClick", |
||
33 | }, |
||
34 | { |
||
35 | option = "soulstonesound", |
||
36 | desc = "Toggle playing of soulstone expired sound", |
||
37 | method = "chatSoulstoneSound", |
||
38 | }, |
||
39 | { |
||
40 | option = "shadowtrancesound", |
||
41 | desc = "Toggle playing of nightfall proc sound", |
||
42 | method = "chatShadowTranceSound", |
||
43 | }, |
||
44 | { |
||
45 | option = "texture", |
||
46 | desc = "Choose a different shardcount texture: default blue orange rose turquoise violet x", |
||
47 | method = "chatTexture", |
||
48 | }, |
||
49 | { |
||
50 | option = "lock", |
||
51 | desc = "Toggle locking of the frames", |
||
52 | method = "chatLock", |
||
53 | }, |
||
54 | { |
||
55 | option = "timers", |
||
56 | desc = "Toggle to turn on/off the timers", |
||
57 | method = "chatTimers", |
||
58 | }, |
||
59 | |||
60 | }, |
||
61 | |||
62 | Chat = { |
||
63 | FelDomModifier = "Fel Domination Modifier is now: ", |
||
64 | FelDomValid = "Valid Modifiers are: ctrl alt shift none", |
||
65 | CloseOnClick = "Close On Click is now: ", |
||
66 | ShadowTranceSound = "Playing of Shadowtrance sound is now: ", |
||
67 | SoulstoneSound = "Playing of Soulstone expired sound is now: ", |
||
68 | Texture = "Texture is now: ", |
||
69 | TextureValid = "Valid textures are: default blue orange rose turquoise violet x", |
||
70 | Lock = "Frame lock is now: ", |
||
71 | Timers = "Timers are now: ", |
||
72 | }, |
||
73 | |||
74 | Message = { |
||
75 | TooFarAway = "They are too far away.", |
||
76 | Busy = "They are busy.", |
||
77 | PreSummon = "Going to summon %s, please click the portal.", |
||
78 | PreSoulstone = "Placing my soulstone on %s.", |
||
79 | Soulstone = "%s has been soulstoned.", |
||
80 | SoulstoneAborted = "Soustone Aborted! It's not placed.", |
||
81 | FailedSummon = "Summoning %s failed!", |
||
82 | }, |
||
83 | |||
84 | |||
85 | Pattern = { |
||
86 | Shard = "Soul Shard", |
||
87 | Corrupted = "Corrupted", |
||
88 | Healthstone = "Healthstone", |
||
89 | Soulstone = "Soulstone", |
||
90 | Spellstone = "Spellstone", |
||
91 | Firestone = "Firestone", |
||
92 | ShadowTrance = "^You gain Shadow Trance.$", |
||
93 | RitualOfSummoning = "Ritual of Summoning", |
||
94 | SoulstoneResurrection = "Soulstone Resurrection", |
||
95 | Warlock = "Warlock", |
||
96 | Rank = "Rank (.+)", |
||
97 | Resisted = "^Your [%a%s%p]+ was resisted by [%a%s%p]+%.", |
||
98 | Immune = "^Your [%a%s%p]+ failed%. [%a%s%p]+ is immune%.$", |
||
99 | }, |
||
100 | |||
101 | State = { |
||
102 | Reset = 0, |
||
103 | Cast = 1, |
||
104 | Start = 2, |
||
105 | Stop = 3, |
||
106 | NewMonsterNewSpell = 4, |
||
107 | NewSpell = 5, |
||
108 | Update = 6, |
||
109 | Failed = 7 |
||
110 | |||
111 | }, |
||
112 | |||
113 | Spell = { |
||
114 | ["Summon Imp"] = "IMP", |
||
115 | ["Summon Voidwalker"] = "VOIDWALKER", |
||
116 | ["Summon Succubus"] = "SUCCUBUS", |
||
117 | ["Summon Felhunter"] = "FELHUNTER", |
||
118 | ["Inferno"] = "INFERNO", |
||
119 | ["Ritual of Doom"] = "DOOMGUARD", |
||
120 | ["Eye of Kilrogg"] = "KILROGG", |
||
121 | ["Fel Domination"] = "FELDOMINATION", |
||
122 | ["Demonic Sacrifice"] = "DEMONICSACRIFICE", |
||
123 | ["Soul Link"] = "SOULLINK", |
||
124 | ["Soulstone Resurrection"] = "SOULSTONERESURRECTION", |
||
125 | ["Ritual of Summoning"] = "RITUALOFSUMMONING", |
||
126 | }, |
||
127 | |||
128 | RankedSpell = { |
||
129 | ["Summon Felsteed"] = { "MOUNT", 1 }, |
||
130 | ["Summon Dreadsteed"] = { "MOUNT", 2 }, |
||
131 | ["Demon Skin Rank 1"] = { "ARMOR", 1 }, |
||
132 | ["Demon Skin Rank 2"] = { "ARMOR", 2 }, |
||
133 | ["Demon Armor Rank 1"] = { "ARMOR", 3 }, |
||
134 | ["Demon Armor Rank 2"] = { "ARMOR", 4 }, |
||
135 | ["Demon Armor Rank 3"] = { "ARMOR", 5 }, |
||
136 | ["Demon Armor Rank 4"] = { "ARMOR", 6 }, |
||
137 | ["Demon Armor Rank 5"] = { "ARMOR", 7 }, |
||
138 | ["Health Funnel Rank 1"] = { "HEALTHFUNNEL", 1 }, |
||
139 | ["Health Funnel Rank 2"] = { "HEALTHFUNNEL", 2 }, |
||
140 | ["Health Funnel Rank 3"] = { "HEALTHFUNNEL", 3 }, |
||
141 | ["Health Funnel Rank 4"] = { "HEALTHFUNNEL", 4 }, |
||
142 | ["Health Funnel Rank 5"] = { "HEALTHFUNNEL", 5 }, |
||
143 | ["Health Funnel Rank 6"] = { "HEALTHFUNNEL", 6 }, |
||
144 | ["Health Funnel Rank 7"] = { "HEALTHFUNNEL", 7 }, |
||
145 | ["Create Healthstone (Minor)"] = { "HEALTHSTONE", 1 }, |
||
146 | ["Create Healthstone (Lesser)"] = { "HEALTHSTONE", 2 }, |
||
147 | ["Create Healthstone"] = { "HEALTHSTONE", 3 }, |
||
148 | ["Create Healthstone (Greater)"] = { "HEALTHSTONE", 4 }, |
||
149 | ["Create Healthstone (Major)"] = { "HEALTHSTONE", 5 }, |
||
150 | ["Create Soulstone (Minor)"] = { "SOULSTONE", 1 }, |
||
151 | ["Create Soulstone (Lesser)"] = { "SOULSTONE", 2 }, |
||
152 | ["Create Soulstone"] = { "SOULSTONE", 3 }, |
||
153 | ["Create Soulstone (Greater)"] = { "SOULSTONE", 4 }, |
||
154 | ["Create Soulstone (Major)"] = { "SOULSTONE", 5 }, |
||
155 | ["Create Spellstone"] = { "SPELLSTONE", 1 }, |
||
156 | ["Create Spellstone (Greater)"] = { "SPELLSTONE", 2 }, |
||
157 | ["Create Spellstone (Major)"] = { "SPELLSTONE", 3 }, |
||
158 | ["Create Firestone (Lesser)"] = { "FIRESTONE", 1 }, |
||
159 | ["Create Firestone"] = { "FIRESTONE", 2 }, |
||
160 | ["Create Firestone (Greater)"] = { "FIRESTONE", 3 }, |
||
161 | ["Create Firestone (Major)"] = { "FIRESTONE", 4 }, |
||
162 | ["Enslave Demon Rank 1"] = {"ENSLAVE", 1}, |
||
163 | ["Enslave Demon Rank 2"] = {"ENSLAVE", 2}, |
||
164 | ["Enslave Demon Rank 3"] = {"ENSLAVE", 3}, |
||
165 | }, |
||
166 | TimedSpell = { |
||
167 | ["Corruption"] = { 12, 15, 18, 18, 18, 18, 18 }, |
||
168 | ["Immolate"] = { 15, 15, 15, 15, 15, 15, 15, 15 }, |
||
169 | ["Siphon Life"] = { 30, 30, 30, 30 }, |
||
170 | ["Curse of Agony"] = { 24, 24, 24, 24, 24, 24 }, |
||
171 | ["Banish"] = { 20, 30 }, |
||
172 | ["Death Coil"] = {3, 3, 3}, |
||
173 | ["Curse of Weakness"] = { 120, 120, 120, 120, 120, 120 }, |
||
174 | ["Curse of Recklessness"] = { 120, 120, 120, 120 }, |
||
175 | ["Curse of the Elements"] = { 300, 300, 300 }, |
||
176 | ["Curse of Shadow"] = { 300, 300 }, |
||
177 | ["Fear"] = { 10, 15, 20 }, |
||
178 | ["Enslave Demon"] = { 300, 300, 300 }, |
||
179 | ["Curse of Doom"] = { 60 }, |
||
180 | ["Curse of Tongues"] = { 30, 30 }, |
||
181 | }, |
||
182 | } |
||
183 | |||
184 | ace:RegisterGlobals({ |
||
185 | version = 1.01, |
||
186 | |||
187 | ACEG_TEXT_NOW_SET_TO = "now set to", |
||
188 | ACEG_TEXT_DEFAULT = "default", |
||
189 | |||
190 | ACEG_DISPLAY_OPTION = "[|cfff5f530%s|r]", |
||
191 | |||
192 | ACEG_MAP_ONOFF = {[0]="|cffff5050Off|r",[1]="|cff00ff00On|r"}, |
||
193 | ACEG_MAP_ENABLED = {[0]="|cffff5050Disabled|r",[1]="|cff00ff00Enabled|r"}, |
||
194 | }) |
||
195 | end |