minions.sql 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582
  1. DROP TABLE IF EXISTS `minions`;
  2. CREATE TABLE `minions` (
  3. `boss_id` smallint(5) unsigned NOT NULL DEFAULT '0',
  4. `minion_id` smallint(5) unsigned NOT NULL DEFAULT '0',
  5. `amount_min` tinyint(2) unsigned NOT NULL DEFAULT '0',
  6. `amount_max` tinyint(2) unsigned NOT NULL DEFAULT '0',
  7. PRIMARY KEY (`boss_id`,`minion_id`)
  8. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  9. INSERT INTO `minions` VALUES
  10. (20117,20118,1,3),
  11. (20376,20377,1,2),
  12. (20398,20399,1,2),
  13. (20520,20445,3,5),
  14. (20522,20524,2,4),
  15. (20738,20739,3,5),
  16. (20745,20746,1,2),
  17. (20747,20748,1,2),
  18. (20749,20750,1,2),
  19. (20751,20752,3,3),
  20. (20753,21040,4,4),
  21. (20758,20759,1,1),
  22. (20758,20760,1,1),
  23. (20761,20762,2,3),
  24. (20763,20764,1,1),
  25. (20763,20765,1,1),
  26. (20763,20766,1,1),
  27. (20771,20772,1,3),
  28. (20773,20774,2,4),
  29. (20779,20750,1,3),
  30. (20936,20937,1,1),
  31. (20936,20938,1,1),
  32. (20936,20939,1,1),
  33. (20941,20940,3,3),
  34. (20944,20942,1,1),
  35. (20944,20943,2,2),
  36. (20947,20945,1,2),
  37. (20947,20946,1,2),
  38. (20950,20948,1,2),
  39. (20950,20949,1,2),
  40. (20953,20951,1,2),
  41. (20953,20952,1,2),
  42. (20956,20954,1,2),
  43. (20956,20955,1,2),
  44. (20959,20957,1,2),
  45. (20959,20958,1,2),
  46. (20963,20960,1,1),
  47. (20963,20961,1,1),
  48. (20963,20962,1,1),
  49. (20974,20975,1,2),
  50. (20974,20976,1,2),
  51. (20977,20978,1,1),
  52. (20977,20979,1,1),
  53. (20980,20981,1,1),
  54. (20980,20982,1,1),
  55. (20986,20987,1,2),
  56. (20986,20988,1,2),
  57. (20989,20990,1,1),
  58. (20991,20992,1,2),
  59. (20991,20993,1,2),
  60. (20994,20995,3,4);
  61. INSERT INTO `minions` VALUES
  62. (21058,21059,1,2),
  63. (21058,21060,1,2),
  64. (21075,21076,1,1),
  65. (21075,21077,1,2),
  66. (21078,21079,1,1),
  67. (21078,21080,1,2),
  68. (21081,21082,1,1),
  69. (21081,21083,1,3),
  70. (21090,21091,1,1),
  71. (21090,21092,1,1),
  72. (21312,21313,2,2),
  73. (21343,21344,2,2),
  74. (21345,21346,2,2),
  75. (21347,21348,1,1),
  76. (21347,21349,1,1),
  77. (21369,21370,2,2),
  78. (21371,21372,2,2),
  79. (21373,21374,1,1),
  80. (21373,21375,1,1),
  81. (21596,21597,1,1),
  82. (21596,21598,1,1),
  83. (21599,21600,1,1),
  84. (21599,21601,1,1),
  85. (22028,22027,3,4),
  86. (22080,22079,3,3),
  87. (22084,22083,3,3),
  88. (22088,22087,3,3),
  89. (22092,22091,3,3),
  90. (22094,22093,6,6),
  91. (22096,22095,3,3),
  92. (22100,22099,8,8),
  93. (22102,22101,8,8),
  94. (22104,22103,8,8),
  95. (22123,22122,2,3),
  96. (22135,22130,1,1),
  97. (22135,22131,1,1);
  98. INSERT INTO `minions` VALUES
  99. (27021,20492,6,8),
  100. (27022,20367,1,3),
  101. (27036,27037,2,3),
  102. (27110,27111,3,5),
  103. (27113,27111,3,6);
  104. -- raid bosses
  105. INSERT INTO `minions` VALUES
  106. (25001,25002,3,3),
  107. (25001,25003,1,1),
  108. (25004,25005,3,3),
  109. (25004,25006,2,2),
  110. (25007,25008,2,2),
  111. (25007,25009,2,2),
  112. (25010,25011,3,3),
  113. (25010,25012,2,2),
  114. (25013,25014,1,1),
  115. (25013,25015,4,4),
  116. (25016,25017,2,2),
  117. (25016,25018,2,2),
  118. (25020,25021,2,2),
  119. (25020,25022,2,2),
  120. (25023,25024,1,1),
  121. (25023,25025,4,4),
  122. (25026,25027,3,3),
  123. (25026,25028,2,2),
  124. (25029,25030,2,2),
  125. (25029,25031,2,2),
  126. (25032,25033,3,3),
  127. (25032,25034,1,1),
  128. (25035,25036,3,3),
  129. (25035,25037,2,2),
  130. (25038,25039,1,1),
  131. (25038,25040,4,4),
  132. (25041,25042,3,3),
  133. (25041,25043,2,2),
  134. (25044,25045,2,2),
  135. (25044,25046,2,2),
  136. (25047,25048,1,1),
  137. (25047,25049,4,4),
  138. (25051,25052,2,2),
  139. (25051,25053,2,2),
  140. (25054,25055,1,1),
  141. (25054,25056,4,4),
  142. (25057,25058,3,3),
  143. (25057,25059,2,2),
  144. (25060,25061,3,3),
  145. (25060,25062,1,1),
  146. (25064,25065,1,1),
  147. (25064,25066,4,4),
  148. (25067,25068,3,3),
  149. (25067,25069,2,2),
  150. (25070,25071,3,3),
  151. (25070,25072,1,1),
  152. (25073,25074,2,2),
  153. (25073,25075,2,2),
  154. (25076,25077,1,1),
  155. (25076,25078,4,4),
  156. (25079,25080,2,2),
  157. (25079,25081,2,2),
  158. (25082,25083,3,3),
  159. (25082,25084,1,1),
  160. (25085,25086,3,3),
  161. (25085,25087,2,2),
  162. (25089,25091,3,3),
  163. (25089,25090,1,1),
  164. (25092,25093,1,1),
  165. (25092,25094,4,4),
  166. (25095,25096,3,3),
  167. (25095,25097,1,1),
  168. (25099,25100,2,2),
  169. (25099,25101,2,2),
  170. (25103,25104,1,1),
  171. (25103,25105,4,4),
  172. (25106,25107,3,3),
  173. (25106,25108,2,2),
  174. (25109,25110,3,3),
  175. (25109,25111,1,1),
  176. (25112,25113,3,3),
  177. (25112,25114,1,1),
  178. (25115,25116,3,3),
  179. (25115,25117,2,2),
  180. (25119,25120,3,3),
  181. (25119,25121,1,1),
  182. (25122,25123,1,1),
  183. (25122,25124,4,4),
  184. (25128,25129,3,3),
  185. (25128,25130,1,1),
  186. (25131,25132,3,3),
  187. (25131,25133,2,2),
  188. (25134,25135,2,2),
  189. (25134,25136,2,2),
  190. (25137,25138,3,3),
  191. (25137,25139,1,1),
  192. (25140,25141,1,1),
  193. (25140,25142,4,4),
  194. (25143,25144,2,2),
  195. (25143,25145,2,2),
  196. (25146,25147,3,3),
  197. (25146,25148,2,2),
  198. (25149,25150,3,3),
  199. (25149,25151,2,2),
  200. (25152,25153,1,1),
  201. (25152,25154,4,4),
  202. (25155,25156,3,3),
  203. (25155,25157,1,1),
  204. (25159,25160,2,2),
  205. (25159,25161,2,2),
  206. (25166,25167,2,2),
  207. (25166,25168,2,2),
  208. (25170,25171,3,3),
  209. (25170,25172,2,2),
  210. (25173,25174,2,2),
  211. (25173,25175,2,2),
  212. (25176,25177,1,1),
  213. (25176,25178,4,4),
  214. (25179,25180,3,3),
  215. (25179,25181,1,1),
  216. (25182,25183,2,2),
  217. (25182,25184,2,2),
  218. (25185,25186,3,3),
  219. (25185,25187,2,2),
  220. (25189,25190,3,3),
  221. (25189,25191,1,1),
  222. (25192,25193,1,1),
  223. (25192,25194,4,4),
  224. (25199,25200,3,3),
  225. (25199,25201,1,1),
  226. (25202,25203,2,2),
  227. (25202,25204,2,2),
  228. (25205,25206,1,1),
  229. (25205,25207,4,4),
  230. (25208,25209,3,3),
  231. (25208,25210,1,1),
  232. (25211,25212,3,3),
  233. (25211,25213,2,2),
  234. (25214,25215,3,3),
  235. (25214,25216,1,1),
  236. (25217,25218,3,3),
  237. (25217,25219,2,2),
  238. (25220,25221,3,3),
  239. (25220,25222,1,1),
  240. (25223,25224,3,3),
  241. (25223,25225,1,1),
  242. (25226,25227,2,2),
  243. (25226,25228,2,2),
  244. (25230,25231,1,1),
  245. (25230,25232,4,4),
  246. (25235,25236,2,2),
  247. (25235,25237,2,2),
  248. (25238,25239,2,2),
  249. (25238,25240,2,2),
  250. (25241,25242,3,3),
  251. (25241,25243,2,2),
  252. (25245,25246,1,1),
  253. (25245,25247,4,4),
  254. (25249,25250,3,3),
  255. (25249,25251,1,1),
  256. (25252,25253,3,3),
  257. (25252,25254,1,1),
  258. (25256,25257,3,3),
  259. (25256,25258,2,2),
  260. (25260,25261,3,3),
  261. (25260,25262,2,2),
  262. (25263,25264,3,3),
  263. (25263,25265,1,1),
  264. (25266,25267,4,4),
  265. (25266,25268,1,1),
  266. (25269,25270,3,3),
  267. (25269,25271,2,2),
  268. (25273,25274,3,3),
  269. (25273,25275,1,1),
  270. (25277,25278,2,2),
  271. (25277,25279,2,2),
  272. (25283,25284,4,4),
  273. (25283,25285,2,2),
  274. (25286,25287,3,3),
  275. (25286,25288,2,2),
  276. (25286,25289,2,2),
  277. (25290,25291,3,3),
  278. (25290,25292,1,1),
  279. (25293,25294,1,1),
  280. (25293,25295,4,4),
  281. (25296,25297,3,3),
  282. (25296,25298,1,1),
  283. (25299,25300,3,3),
  284. (25299,25301,2,2),
  285. (25302,25303,3,3),
  286. (25302,25304,1,1),
  287. (25306,25307,1,1),
  288. (25306,25308,4,4),
  289. (25309,25310,1,1),
  290. (25309,25311,4,4),
  291. (25312,25313,2,2),
  292. (25312,25314,2,2),
  293. (25316,25317,1,1),
  294. (25316,25318,4,4),
  295. (25319,25320,3,3),
  296. (25319,25321,1,1),
  297. (25322,25323,3,3),
  298. (25322,25324,1,1),
  299. (25325,25326,1,1),
  300. (25325,25327,4,4),
  301. (25328,25329,1,1),
  302. (25328,25330,1,1),
  303. (25328,25331,1,1),
  304. (25328,25332,1,1),
  305. (25339,25340,2,2),
  306. (25339,25341,2,2),
  307. (25342,25343,1,1),
  308. (25342,25344,1,1),
  309. (25342,25345,2,2),
  310. (25346,25347,3,3),
  311. (25346,25348,1,1),
  312. (25349,25350,3,3),
  313. (25349,25351,1,1),
  314. (25352,25353,3,3),
  315. (25354,25355,4,4),
  316. (25354,25356,1,1),
  317. (25357,25358,2,2),
  318. (25357,25359,1,1),
  319. (25360,25361,3,3),
  320. (25362,25363,2,2),
  321. (25362,25364,3,3),
  322. (25366,25367,2,2),
  323. (25366,25368,1,1),
  324. (25369,25370,1,1),
  325. (25369,25371,4,4),
  326. (25373,25374,3,3),
  327. (25375,25376,2,2),
  328. (25375,25377,1,1),
  329. (25378,25379,3,3),
  330. (25380,25381,1,1),
  331. (25380,25382,4,4),
  332. (25383,25384,3,3),
  333. (25385,25386,1,1),
  334. (25385,25387,4,4),
  335. (25388,25389,3,3),
  336. (25388,25390,2,2),
  337. (25392,25393,3,3),
  338. (25395,25396,1,1),
  339. (25395,25397,2,2),
  340. (25398,25399,3,3),
  341. (25398,25400,1,1),
  342. (25401,25402,1,1),
  343. (25401,25403,3,3),
  344. (25404,25405,2,2),
  345. (25404,25406,1,1),
  346. (25407,25408,1,1),
  347. (25407,25409,2,2),
  348. (25410,25411,3,3),
  349. (25412,25413,3,3),
  350. (25412,25414,2,2),
  351. (25415,25416,3,3),
  352. (25415,25417,1,1),
  353. (25418,25419,3,3),
  354. (25420,25421,3,3),
  355. (25420,25422,1,1),
  356. (25423,25424,4,4),
  357. (25423,25425,1,1),
  358. (25426,25427,2,2),
  359. (25426,25428,1,1),
  360. (25429,25430,3,3),
  361. (25431,25432,2,2),
  362. (25431,25433,2,2),
  363. (25434,25435,1,1),
  364. (25434,25436,3,3),
  365. (25438,25439,1,1),
  366. (25438,25440,3,3),
  367. (25441,25442,4,4),
  368. (25441,25443,1,1),
  369. (25444,25445,3,3),
  370. (25444,25446,2,2),
  371. (25447,25448,2,2),
  372. (25447,25449,2,2),
  373. (25450,25451,3,3),
  374. (25450,25452,1,1),
  375. (25453,25454,3,3),
  376. (25453,25455,1,1),
  377. (25456,25457,1,1),
  378. (25456,25458,2,2),
  379. (25456,25459,1,1),
  380. (25460,25461,2,2),
  381. (25460,25462,1,1),
  382. (25463,25464,1,1),
  383. (25463,25465,1,1),
  384. (25463,25466,1,1),
  385. (25467,25468,4,4),
  386. (25467,25469,1,1),
  387. (25470,25471,3,3),
  388. (25470,25472,1,1),
  389. (25473,25474,3,3),
  390. (25475,25476,3,3),
  391. (25475,25477,2,2),
  392. (25478,25479,3,3),
  393. (25478,25480,1,1),
  394. (25481,25482,2,2),
  395. (25481,25483,1,1),
  396. (25484,25485,1,1),
  397. (25484,25486,2,2),
  398. (25487,25488,3,3),
  399. (25487,25489,1,1),
  400. (25490,25491,3,3),
  401. (25490,25492,2,2),
  402. (25493,25494,1,1),
  403. (25493,25495,4,4),
  404. (25496,25497,3,3),
  405. (25498,25499,1,1),
  406. (25498,25500,4,4),
  407. -- Boss Akata
  408. (25501,25502,3,3),
  409. (25501,25503,2,2),
  410. -- Nellis' Vengeful Spirit
  411. (25504,25505,3,3),
  412. (25506,25507,1,1),
  413. -- Rayito the Looter
  414. (25506,25508,3,3),
  415. (25509,25510,1,1),
  416. (25509,25511,3,3),
  417. (25514,25515,1,1),
  418. (25514,25516,3,3),
  419. (25623,25633,4,6),
  420. (25625,25629,3,3),
  421. (25625,25630,3,3),
  422. -- Queen Shyeed
  423. (25671,25672,3,3),
  424. (25671,25673,1,1),
  425. -- Gwindorr
  426. (25674,25675,3,3),
  427. (25674,25676,2,2),
  428. -- Water Spirit Lian
  429. (25677,25678,3,3),
  430. (25677,25679,1,1),
  431. -- Gorgolos
  432. (25681,25682,3,3),
  433. -- Last Titan Utenus
  434. (25684,25685,3,3),
  435. -- Hekaton Prime
  436. (25687,25688,1,1),
  437. (25687,25689,2,2),
  438. (25572,25573,2,2),
  439. (25572,25574,2,2),
  440. (25575,25576,4,4),
  441. (25575,25577,1,1),
  442. (25579,25580,4,4),
  443. (25579,25581,1,1),
  444. (25582,25583,2,2),
  445. (25582,25584,2,2),
  446. (25585,25586,3,3),
  447. (25585,25587,1,1),
  448. (25589,25590,1,1),
  449. (25589,25591,4,4),
  450. (25593,25594,3,3),
  451. (25593,25595,2,2),
  452. (27108,27109,1,1),
  453. (29096,29097,2,2),
  454. (29096,29098,3,4),
  455. (25524,25525,2,2),
  456. (25524,25526,2,2),
  457. -- Wings of Flame Ixion
  458. (29040,29041,1,1),
  459. (29040,29042,1,1),
  460. (29040,29043,1,1),
  461. (29040,29044,1,1),
  462. (29056,29057,2,2),
  463. (29056,29058,2,2);
  464. -- Primeval Isle
  465. INSERT INTO `minions` VALUES
  466. (22742,22744,3,3),
  467. (22743,22745,3,4),
  468. (22202,22201,2,3),
  469. (22205,22204,4,4),
  470. (22213,22209,1,1),
  471. (22213,22210,1,1),
  472. (22213,22212,2,2),
  473. (22198,22197,4,4),
  474. (22223,22197,1,1);
  475. -- ToI - Binder group
  476. INSERT INTO `minions` VALUES
  477. (20983,20984,1,1),
  478. (20983,20985,1,1),
  479. (20983,21074,1,1);
  480. -- VoS - Judge of Splendor group
  481. INSERT INTO `minions` VALUES
  482. (21544,21545,1,1),
  483. (21544,21546,1,1);
  484. -- Steam Corridor groups
  485. INSERT INTO `minions` VALUES
  486. (22305,22308,1,1),
  487. (22306,22308,2,2),
  488. (22306,22309,2,2),
  489. (22307,22308,1,1),
  490. (22307,22309,2,2),
  491. (22307,22310,1,1),
  492. (22416,22308,1,1),
  493. (22416,22309,1,1),
  494. (22416,22310,1,1),
  495. (22416,22417,1,1);
  496. -- Emerald Square groups
  497. INSERT INTO `minions` VALUES
  498. (22299,22300,2,2),
  499. (22301,22290,2,2);
  500. -- Original Sin Wardens
  501. INSERT INTO `minions` VALUES
  502. (22423,22424,1,1),
  503. (22423,22425,1,1),
  504. (22423,22426,1,1),
  505. (22423,22427,1,1),
  506. (22423,22428,1,1),
  507. (22423,22429,1,1),
  508. (22423,22430,1,1),
  509. (22431,22432,1,1),
  510. (22431,22433,1,1),
  511. (22431,22434,1,1),
  512. (22431,22435,1,1),
  513. (22431,22436,1,1),
  514. (22431,22437,1,1),
  515. (22431,22438,1,1);
  516. -- Kamaloka
  517. INSERT INTO `minions` VALUES
  518. (18555, 18556, 2, 2),
  519. (18559, 18560, 2, 2),
  520. (18562, 18563, 2, 2),
  521. (18566, 18567, 2, 2),
  522. (18568, 18569, 1, 1),
  523. (18571, 18572, 2, 2),
  524. (18573, 18574, 2, 2),
  525. (18577, 18578, 2, 2);
  526. -- Kamaloka Labyrinth
  527. INSERT INTO `minions` VALUES
  528. (29129, 29130, 2, 2),
  529. (29129, 29131, 2, 2),
  530. (29132, 29133, 2, 2),
  531. (29132, 29134, 2, 2),
  532. (29135, 29136, 2, 2),
  533. (29135, 29137, 2, 2),
  534. (29138, 29139, 2, 2),
  535. (29138, 29140, 2, 2),
  536. (29141, 29142, 2, 2),
  537. (29141, 29143, 2, 2),
  538. (29144, 29145, 2, 2),
  539. (29144, 29146, 2, 2),
  540. (29147, 29148, 2, 2),
  541. (29147, 29149, 2, 2),
  542. (25710, 25711, 2, 2),
  543. (25710, 25712, 2, 2);
  544. -- Mithril Mines Minions (Temporary)
  545. INSERT INTO `minions` VALUES
  546. (22678, 22684, 1, 1),
  547. (22679, 22686, 1, 1);
  548. -- Giants Cave
  549. INSERT INTO `minions` VALUES
  550. (22666, 22667, 1, 4),
  551. (22670, 22671, 1, 2),
  552. (22670, 22672, 1, 3);
  553. -- Stakato Nest
  554. INSERT INTO `minions` VALUES
  555. (22625, 22624, 1, 1),
  556. (22630, 22632, 1, 1),
  557. (22621, 22620, 1, 1),
  558. -- Nornil's Garden
  559. (25528, 25529, 2, 2),
  560. (25528, 25530, 2, 4);
  561. -- Larva and Queen Ant
  562. INSERT INTO `minions` VALUES
  563. (29001, 29003, 5, 5),
  564. (29001, 29005, 7, 7),
  565. (29002, 29003, 2, 2);