-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDefines.lua
More file actions
260 lines (255 loc) · 7.37 KB
/
Defines.lua
File metadata and controls
260 lines (255 loc) · 7.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
local _, EasyTools = ...
EasyTools.Defines = {}
EasyTools.Defines.BlizzardTimeFormat = { "None", "%I:%M", "%I:%M:%S", "%I:%M %p", "%I:%M:%S %p", "%H:%M", "%H:%M:%S" }
EasyTools.Defines.BlizzardTimeFormatExample = { "None", "03:27", "03:27:32", "03:27 PM", "03:27:32 PM", "15:27",
"15:27:32" }
EasyTools.Defines.ItemContextNames = {
[0] = "NONE",
[1] = "Dungeon Normal",
[2] = "Dungeon Heroic",
[3] = "Raid Normal",
[4] = "Raid Raid Finder",
[5] = "Raid Heroic",
[6] = "Raid Mythic",
[7] = "PVP Unranked 1",
[8] = "PVP Ranked 1 Unrated",
[9] = "Scenario Normal",
[10] = "Scenario Heroic",
[11] = "Quest Reward",
[12] = "In Game Store",
[13] = "Trade Skill",
[14] = "Vendor",
[15] = "Black Market",
[16] = "MythicPlus End of Run",
[17] = "Dungeon Lvl Up 1",
[18] = "Dungeon Lvl Up 2",
[19] = "Dungeon Lvl Up 3",
[20] = "Dungeon Lvl Up 4",
[21] = "Force to NONE",
[22] = "Timewalking",
[23] = "Dungeon Mythic",
[24] = "Pvp Honor Reward",
[25] = "World Quest 1",
[26] = "World Quest 2",
[27] = "World Quest 3",
[28] = "World Quest 4",
[29] = "World Quest 5",
[30] = "World Quest 6",
[31] = "Mission Reward 1",
[32] = "Mission Reward 2",
[33] = "MythicPlus End of Run Time Chest",
[34] = "MythicPlus Timewalking End of Run",
[35] = "MythicPlus Jackpot",
[36] = "World Quest 7",
[37] = "World Quest 8",
[38] = "PVP Ranked 2 Combatant",
[39] = "PVP Ranked 4 Challenger",
[40] = "PVP Ranked 6 Rival",
[41] = "PVP Unranked 2",
[42] = "World Quest 9",
[43] = "World Quest 10",
[44] = "PVP Ranked 8 Duelist",
[45] = "PVP Ranked 9 Elite",
[46] = "PVP Ranked 3 Combatant",
[47] = "PVP Unranked 3",
[48] = "PVP Unranked 4",
[49] = "PVP Unranked 5",
[50] = "PVP Unranked 6",
[51] = "PVP Unranked 7",
[52] = "PVP Ranked 5 Challenger",
[53] = "World Quest 11",
[54] = "World Quest 12",
[55] = "World Quest 13",
[56] = "PVP Ranked Jackpot",
[57] = "Tournament Realm 1",
[58] = "Relinquished",
[59] = "Legendary Forge",
[60] = "Quest Bonus Loot",
[61] = "Character Boost Dragonflight 70",
[62] = "Character Boost Shadowlands 50",
[63] = "Legendary Crafting 1",
[64] = "Legendary Crafting 2",
[65] = "Legendary Crafting 3",
[66] = "Legendary Crafting 4",
[67] = "Legendary Crafting 5",
[68] = "Legendary Crafting 6",
[69] = "Legendary Crafting 7",
[70] = "Legendary Crafting 8",
[71] = "Legendary Crafting 9",
[72] = "Weekly Rewards Additional",
[73] = "Weekly Rewards Concession",
[74] = "World Quest Jackpot",
[75] = "New Character",
[76] = "War Mode",
[77] = "PvP Brawl 1",
[78] = "PvP Brawl 2",
[79] = "Torghast",
[80] = "Corpse Recovery",
[81] = "World Boss",
[82] = "Raid Normal Extended",
[83] = "Raid Raid Finder Extended",
[84] = "Raid Heroic Extended",
[85] = "Raid Mythic Extended",
[86] = "Character Boost Shadowlands 60",
[87] = "MythicPlus Timewalking End of Run Time Chest",
[88] = "Pvp Ranked 7 Rival",
[89] = "Raid Normal Extended 2",
[90] = "Raid Finder Extended 2",
[91] = "Raid Heroic Extended 2",
[92] = "Raid Mythic Extended 2",
[93] = "Raid Normal Extended 3",
[94] = "Raid Finder Extended 3",
[95] = "Raid Heroic Extended 3",
[96] = "Raid Mythic Extended 3",
[97] = "Template Character 1",
[98] = "Template Character 2",
[99] = "Template Character 3",
[100] = "Template Character 4",
[101] = "Dungeon Normal Jackpot",
[102] = "Dungeon Heroic Jackpot",
[103] = "Dungeon Mythic Jackpot",
[104] = "Delves 1",
[105] = "Timerunning",
[106] = "Delves 2",
[107] = "Delves 3",
[108] = "Delves Jackpot",
[109] = "Delves Key 1",
[110] = "Delves Key 2",
[111] = "Delves Key 3",
[112] = "Delves Key 4",
[113] = "Delves Key 5",
[114] = "Delves Key 6",
[115] = "Delves Key 7",
[116] = "Delves Key 8",
[117] = "Delves Bounty 1",
[118] = "Delves Bounty 2",
[119] = "Delves Bounty 3",
[120] = "Delves Bounty 4",
[121] = "Delves Bounty 5",
[122] = "Delves Bounty 6",
[123] = "Delves Bounty 7",
[124] = "Delves Bounty 8",
[125] = "Delves Level Up 1",
[126] = "Delves Level Up 2",
[127] = "Delves Level Up 3",
[128] = "Delves Level Up 4",
[129] = "Delves Bonus 1",
[130] = "Delves Bonus 2",
[131] = "Delves Bonus 3",
[132] = "Delves Bonus 4",
[133] = "Delves Bonus 5",
[134] = "Delves Bonus 6",
[135] = "Delves Bonus 7",
[136] = "Delves Bonus 8",
[137] = "Delves Bonus 9",
[138] = "Delves Bonus 10",
[139] = "Dungeon Bonus 1",
[140] = "Dungeon Bonus 2",
[141] = "Dungeon Bonus 3",
[142] = "Dungeon Bonus 4",
[143] = "Dungeon Bonus 5",
[144] = "Dungeon Bonus 6",
[145] = "Dungeon Bonus 7",
[146] = "Dungeon Bonus 8",
[147] = "Dungeon Bonus 9",
[148] = "Dungeon Bonus 10",
[149] = "Raid Bonus 1",
[150] = "Raid Bonus 2",
[151] = "Raid Bonus 3",
[152] = "Raid Bonus 4",
[153] = "Raid Bonus 5",
[154] = "Raid Bonus 6",
[155] = "Raid Bonus 7",
[156] = "Raid Bonus 8",
[157] = "Raid Bonus 9",
[158] = "Raid Bonus 10",
[159] = "Dungeon Hard Mode 1",
[160] = "Dungeon Hard Mode 2",
[161] = "Dungeon Hard Mode 3",
[162] = "Tournament Realm 2",
[163] = "Tournament Realm 3",
[164] = "Tournament Realm 4",
[165] = "Warbound 1",
[166] = "Warbound 2",
[167] = "Warbound 3",
[168] = "Warbound 4",
[169] = "Warbound 5",
[170] = "Warbound 6",
[171] = "Warbound 7",
[172] = "Warbound 8",
[173] = "Warbound 9",
[174] = "Warbound 10",
[175] = "Warbound 11",
[176] = "Warbound 12",
[177] = "Warbound 13",
[178] = "Warbound 14",
[179] = "Warbound 15",
[180] = "Warbound 16",
[181] = "Warbound 17",
[182] = "Warbound 18",
[183] = "Warbound 19",
[184] = "Warbound 20",
[185] = "Endeavors",
}
EasyTools.Defines.kinds = {
spell = "SpellId",
item = "ItemId",
unit = "CreatureId",
quest = "QuestId",
talent = "TalentId",
achievement = "AchievementId",
criteria = "CriteriaId",
ability = "AbilityId",
currency = "CurrencyId",
artifactpower = "ArtifactPowerId",
enchant = "EnchantId",
bonus = "BonusId",
gem = "GemId",
mount = "MountId",
companion = "CompanionId",
macro = "MacroId",
set = "SetId",
visual = "VisualId",
source = "SourceId",
species = "SpeciesId",
icon = "IconId",
areapoi = "AreaPoiId",
vignette = "VignetteId",
expansion = "ExpansionId",
object = "ObjectId",
traitnode = "TraitNodeId",
traitentry = "TraitEntryId",
traitdef = "TraitDefinitionId",
context = "Context",
worldquest = "WorldQuestId",
}
EasyTools.Defines.disabledKinds = {
icon = true,
expansion = true,
}
EasyTools.Defines.kindsByID = {
[0] = "item",
[1] = "spell",
[2] = "unit",
[3] = "unit",
[4] = "object",
[5] = "currency",
[6] = "unit",
[7] = "spell",
[8] = "spell",
[9] = "unit",
[10] = "mount",
[11] = "spell",
[12] = "achievement",
[13] = "spell",
[14] = "set",
[17] = "spell",
[18] = "spell",
[19] = "item",
[22] = "quest",
[23] = "quest",
[24] = "quest",
[25] = "macro",
[26] = "areapoi",
[27] = "vignette",
}