Mercurial > wow > details-legacy-raids-info
comparison Details_RaidInfo-BlackrockFoundry/Details_RaidInfo-BlackrockFoundry.lua @ 0:0de01324b4f2
first commit
| author | Tercio |
|---|---|
| date | Tue, 23 Jun 2015 15:26:28 -0300 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:0de01324b4f2 |
|---|---|
| 1 | |
| 2 local _detalhes = _G._detalhes | |
| 3 | |
| 4 local blackrock_foundry = { | |
| 5 | |
| 6 id = 1205, --994 = map id extracted from encounter journal | |
| 7 ej_id = 477, --encounter journal id | |
| 8 | |
| 9 name = "Blackrock Foundry", | |
| 10 | |
| 11 icons = [[Interface\AddOns\Details_RaidInfo-BlackrockFoundry\boss_faces]], | |
| 12 icon = [[Interface\AddOns\Details_RaidInfo-BlackrockFoundry\icon256x128]], | |
| 13 | |
| 14 is_raid = true, | |
| 15 | |
| 16 backgroundFile = {file = [[Interface\Glues\LOADINGSCREENS\LoadingScreen_BlackrockFoundry]], coords = {0, 1, 132/512, 439/512}}, | |
| 17 backgroundEJ = [[Interface\EncounterJournal\UI-EJ-LOREBG-BlackrockFoundry]], | |
| 18 | |
| 19 boss_names = { | |
| 20 --[[ 1 ]] "Gruul", | |
| 21 --[[ 2 ]] "Oregorger", | |
| 22 --[[ 3 ]] "Beastlord Darmac", | |
| 23 --[[ 4 ]] "Flamebender Ka'graz", | |
| 24 --[[ 5 ]] "Hans'gar and Franzok", | |
| 25 --[[ 6 ]] "Operator Thogar", | |
| 26 --[[ 7 ]] "The Blast Furnace", | |
| 27 --[[ 8 ]] "Kromog", | |
| 28 --[[ 9 ]] "The Iron Maidens", | |
| 29 --[[ 10 ]] "Blackhand", | |
| 30 }, | |
| 31 | |
| 32 encounter_ids = { --encounter journal encounter id | |
| 33 --> Ids by Index | |
| 34 1161, 1202, 1122, 1123, 1155, 1147, 1154, 1162, 1203, 959, | |
| 35 | |
| 36 --> Boss Index | |
| 37 [1161] = 1, | |
| 38 [1202] = 2, | |
| 39 [1122] = 3, | |
| 40 [1123] = 4, | |
| 41 [1155] = 5, | |
| 42 [1147] = 6, | |
| 43 [1154] = 7, | |
| 44 [1162] = 8, | |
| 45 [1203] = 9, | |
| 46 [959] = 10, | |
| 47 }, | |
| 48 | |
| 49 encounter_ids2 = { | |
| 50 --combatlog encounter id | |
| 51 [1691] = 1, --Gruul | |
| 52 [1696] = 2, --Oregorger | |
| 53 [1694] = 3, --Beastlord Darmac | |
| 54 [1689] = 4, --Flamebender Ka'graz | |
| 55 [1693] = 5, --Hans'gar & Franzok | |
| 56 [1692] = 6, --Operator Thogar | |
| 57 [1690] = 7, --The Blast Furnace | |
| 58 [1713] = 8, --Kromog, Legend of the Mountain | |
| 59 [1695] = 9, --The Iron Maidens | |
| 60 [1704] = 10, --Blackhand | |
| 61 }, | |
| 62 | |
| 63 boss_ids = { | |
| 64 --npc ids | |
| 65 [76877] = 1, --Gruul | |
| 66 [77182] = 2, --Oregorger | |
| 67 [76865] = 3, --Beastlord Darmac | |
| 68 [76814] = 4, --Flamebender Ka'graz | |
| 69 [76974] = 5, --Franzok | |
| 70 [76973] = 5, --Hans'gar | |
| 71 [76906] = 6, --Operator Thogar | |
| 72 [76806] = 7, --Heart of the Mountain | |
| 73 [77692] = 8, --Kromog, Legend of the Mountain | |
| 74 [77557] = 9, -- Admiral Gar'an | |
| 75 [77231] = 9, --Enforcer Sorka | |
| 76 [77477] = 9, --Marak the Blooded | |
| 77 [77325] = 10, --Blackhand | |
| 78 }, | |
| 79 | |
| 80 encounters = { | |
| 81 | |
| 82 [1] = { | |
| 83 boss = "Gruul", | |
| 84 portrait = [[Interface\ENCOUNTERJOURNAL\UI-EJ-BOSS-Gruul]], | |
| 85 | |
| 86 --> spell list | |
| 87 continuo = { | |
| 88 155080, | |
| 89 155301, | |
| 90 155530, | |
| 91 162322, | |
| 92 165983, | |
| 93 173190, | |
| 94 173192, | |
| 95 }, | |
| 96 }, | |
| 97 | |
| 98 [2] = { | |
| 99 boss = "Oregorger", | |
| 100 portrait = [[Interface\ENCOUNTERJOURNAL\UI-EJ-BOSS-Oregorger]], | |
| 101 | |
| 102 --> spell list | |
| 103 continuo = { | |
| 104 155897, | |
| 105 155900, | |
| 106 156203, | |
| 107 156297, | |
| 108 156324, | |
| 109 156374, | |
| 110 156388, | |
| 111 156879, | |
| 112 165983, | |
| 113 173471, | |
| 114 }, | |
| 115 }, | |
| 116 | |
| 117 [3] = { | |
| 118 boss = "Beastlord Darmac", | |
| 119 portrait = [[Interface\ENCOUNTERJOURNAL\UI-EJ-BOSS-Beastlord Darmac]], | |
| 120 | |
| 121 --> spell list | |
| 122 continuo = { | |
| 123 154956, | |
| 124 154960, | |
| 125 154981, | |
| 126 154989, | |
| 127 155030, | |
| 128 155061, | |
| 129 155198, | |
| 130 155222, | |
| 131 155247, | |
| 132 155499, | |
| 133 155531, | |
| 134 155611, | |
| 135 155657, | |
| 136 155718, | |
| 137 156823, | |
| 138 156824, | |
| 139 162275, | |
| 140 162283, | |
| 141 }, | |
| 142 }, | |
| 143 | |
| 144 [4] = { | |
| 145 boss = "Flamebender Ka'graz", | |
| 146 portrait = [[Interface\ENCOUNTERJOURNAL\UI-EJ-BOSS-Flamebender Kagraz]], | |
| 147 | |
| 148 --> spell list | |
| 149 continuo = { | |
| 150 154938, | |
| 151 155049, | |
| 152 155074, | |
| 153 155314, | |
| 154 155318, | |
| 155 155484, | |
| 156 155511, | |
| 157 156018, | |
| 158 156040, | |
| 159 156713, | |
| 160 163284, | |
| 161 163633, | |
| 162 163822, | |
| 163 }, | |
| 164 }, | |
| 165 | |
| 166 [5] = { | |
| 167 boss = "Hans'gar and Franzok", | |
| 168 portrait = [[Interface\ENCOUNTERJOURNAL\UI-EJ-BOSS-Franzok]], | |
| 169 | |
| 170 --> spell list | |
| 171 continuo = { | |
| 172 153470, | |
| 173 155818, | |
| 174 156938, | |
| 175 157853, | |
| 176 158140, | |
| 177 161570, | |
| 178 }, | |
| 179 }, | |
| 180 | |
| 181 [6] = { | |
| 182 boss = "Operator Thogar", | |
| 183 portrait = [[Interface\ENCOUNTERJOURNAL\UI-EJ-BOSS-Operator Thogar]], | |
| 184 | |
| 185 --> spell list | |
| 186 continuo = { | |
| 187 163754, | |
| 188 156554, | |
| 189 155921, | |
| 190 158084, | |
| 191 163752, | |
| 192 155701, | |
| 193 160050, | |
| 194 156270, | |
| 195 156655, | |
| 196 }, | |
| 197 }, | |
| 198 | |
| 199 [7] = { | |
| 200 boss = "The Blast Furnace", | |
| 201 portrait = [[Interface\ENCOUNTERJOURNAL\UI-EJ-BOSS-The Blast Furnace]], | |
| 202 | |
| 203 --> spell list | |
| 204 continuo = { | |
| 205 155187, | |
| 206 155201, | |
| 207 155209, | |
| 208 155223, | |
| 209 155242, | |
| 210 155743, | |
| 211 156932, | |
| 212 156937, | |
| 213 158246, | |
| 214 159408, | |
| 215 }, | |
| 216 }, | |
| 217 | |
| 218 [8] = { | |
| 219 boss = "Kromog", | |
| 220 portrait = [[Interface\ENCOUNTERJOURNAL\UI-EJ-BOSS-Kromog]], | |
| 221 | |
| 222 --> spell list | |
| 223 continuo = { | |
| 224 156704, | |
| 225 156844, | |
| 226 157055, | |
| 227 157059, | |
| 228 157247, | |
| 229 157659, | |
| 230 161893, | |
| 231 161923, | |
| 232 162349, | |
| 233 162392, | |
| 234 }, | |
| 235 }, | |
| 236 | |
| 237 [9] = { | |
| 238 boss = "The Iron Maidens", | |
| 239 portrait = [[Interface\ENCOUNTERJOURNAL\UI-EJ-BOSS-Iron Maidens]], | |
| 240 | |
| 241 --> spell list | |
| 242 continuo = { | |
| 243 155841, | |
| 244 156637, | |
| 245 156669, | |
| 246 157884, | |
| 247 158078, | |
| 248 158080, | |
| 249 158683, | |
| 250 159335, | |
| 251 160436, | |
| 252 160733, | |
| 253 }, | |
| 254 }, | |
| 255 | |
| 256 [10] = { | |
| 257 boss = "Blackhand", | |
| 258 portrait = [[Interface\ENCOUNTERJOURNAL\UI-EJ-BOSS-Warlord Blackhand]], | |
| 259 | |
| 260 --> spell list | |
| 261 continuo = { | |
| 262 155992, | |
| 263 156044, | |
| 264 156107, | |
| 265 156401, | |
| 266 156479, | |
| 267 156497, | |
| 268 156731, | |
| 269 156743, | |
| 270 }, | |
| 271 }, | |
| 272 | |
| 273 }, | |
| 274 | |
| 275 } | |
| 276 | |
| 277 _detalhes:InstallEncounter (blackrock_foundry) |
