[6812] Implement localization of creature/gameobject name that say/yell.
[getmangos.git] / sql / updates / 06496_mangos_spell_pet_auras.sql
blob152730a5a700c05cad0d58a6d9c565828bd696ea
1 --
2 -- Table structure for table `spell_pet_auras`
3 --
5 DROP TABLE IF EXISTS `spell_pet_auras`;
6 CREATE TABLE `spell_pet_auras` (
7   `spell` mediumint(8) unsigned NOT NULL COMMENT 'dummy spell id',
8   `pet` mediumint(8) unsigned NOT NULL default '0' COMMENT 'pet id; 0 = all',
9   `aura` mediumint(8) unsigned NOT NULL COMMENT 'pet aura id',
10   PRIMARY KEY  (`spell`,`pet`)
11 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
14 -- Dumping data for table `spell_pet_auras`
17 LOCK TABLES `spell_pet_auras` WRITE;
18 /*!40000 ALTER TABLE `spell_pet_auras` DISABLE KEYS */;
19 INSERT INTO `spell_pet_auras` VALUES
20 (19028, 0, 25228),
21 (19578, 0, 19579),
22 (20895, 0, 24529),
23 (28757, 0, 28758),
24 (35029, 0, 35060),
25 (35030, 0, 35061),
26 (35691, 0, 35696),
27 (35692, 0, 35696),
28 (35693, 0, 35696),
29 (23785, 416, 23759),
30 (23822, 416, 23826),
31 (23823, 416, 23827),
32 (23824, 416, 23828),
33 (23825, 416, 23829),
34 (23785, 417, 23762),
35 (23822, 417, 23837),
36 (23823, 417, 23838),
37 (23824, 417, 23839),
38 (23825, 417, 23840),
39 (23785, 1860, 23760),
40 (23822, 1860, 23841),
41 (23823, 1860, 23842),
42 (23824, 1860, 23843),
43 (23825, 1860, 23844),
44 (23785, 1863, 23761),
45 (23822, 1863, 23833),
46 (23823, 1863, 23834),
47 (23824, 1863, 23835),
48 (23825, 1863, 23836),
49 (23785, 17252, 35702),
50 (23822, 17252, 35703),
51 (23823, 17252, 35704),
52 (23824, 17252, 35705),
53 (23825, 17252, 35706);
55 /*!40000 ALTER TABLE `spell_pet_auras` ENABLE KEYS */;
56 UNLOCK TABLES;