-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathFamilyInfo.lua
1810 lines (1652 loc) · 62.5 KB
/
FamilyInfo.lua
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--[[----------------------------------------------------------------------------
LiteMount/FamilyInfo.lua
Copyright 2011 Mike Battersby
----------------------------------------------------------------------------]]--
local _, LM = ...
LM.MOUNTFAMILY = {}
LM.MOUNTFAMILY["Alpaca"] = {
[316493] = true, -- Elusive Quickhoof
[298367] = true, -- Mollie
[418078] = true, -- Pattie
[316802] = true, -- Springfur Alpaca
}
LM.MOUNTFAMILY["Aqir Drone"] = {
[316337] = true, -- Malevolent Drone
[316339] = true, -- Shadowbarb Drone
[414986] = true, -- Royal Swarmer
[316340] = true, -- Wicked Swarmer
}
LM.MOUNTFAMILY["Aqiri"] = {
[ 25863] = true, -- Black Qiraji Battle Tank
[ 26655] = true, -- Black Qiraji Battle Tank
[ 26656] = true, -- Black Qiraji Battle Tank
[239770] = true, -- Black Qiraji War Tank
[ 25953] = true, -- Blue Qiraji Battle Tank
[239766] = true, -- Blue Qiraji War Tank
[ 26056] = true, -- Green Qiraji Battle Tank
[ 26054] = true, -- Red Qiraji Battle Tank
[239767] = true, -- Red Qiraji War Tank
[ 92155] = true, -- Ultramarine Qiraji Battle Tank
[ 26055] = true, -- Yellow Qiraji Battle Tank
}
LM.MOUNTFAMILY["Aquilon"] = {
[353880] = true, -- Ascendant's Aquilon
[343550] = true, -- Battle-Hardened Aquilon
[353875] = true, -- Elysian Aquilon
[353877] = true, -- Foresworn Aquilon
}
LM.MOUNTFAMILY["Armoredon"] = {
[387231] = true, -- Hailstorm Armoredon
[406637] = true, -- Inferno Armoredon
[434462] = true, -- Infinite Armoredon
[422486] = true, -- Verdant Armoredon
}
LM.MOUNTFAMILY["Bakar"] = {
[424607] = true, -- Taivan
}
LM.MOUNTFAMILY["Basilisk"] = {
[230844] = true, -- Brawler's Burly Basilisk
[289639] = true, -- Bruce
[457654] = true, -- Keg Leg's Radiant Crocolisk
[457650] = true, -- Plunderlord's Golden Crocolisk
[457656] = true, -- Plunderlord's Midnight Crocolisk
[457659] = true, -- Plunderlord's Weathered Crocolisk
[261433] = true, -- Vicious War Basilisk
[261434] = true, -- Vicious War Basilisk
}
LM.MOUNTFAMILY["Bat"] = {
[139595] = true, -- Armored Bloodwing
[288720] = true, -- Bloodgorged Hunter
[288714] = true, -- Bloodthirsty Dreadwing
[466838] = true, -- Chaos-Forged Dreadwing
[332904] = true, -- Harvester's Dredwing
[332882] = true, -- Horrid Dredwing
[332903] = true, -- Rampart Screecher
[312777] = true, -- Silvertip Dredwing
[279868] = true, -- Witherbark Direwing
}
LM.MOUNTFAMILY["Bear"] = {
[ 98204] = true, -- Amani Battle Bear
[452645] = true, -- Amani Hunting Bear
[ 43688] = true, -- Amani War Bear
[ 60116] = true, -- Armored Brown Bear
[ 60114] = true, -- Armored Brown Bear
[ 51412] = true, -- Big Battle Bear
[ 58983] = true, -- Big Blizzard Bear
[ 59572] = true, -- Black Polar Bear
[ 60118] = true, -- Black War Bear
[ 60119] = true, -- Black War Bear
[288438] = true, -- Blackpaw
[103081] = true, -- Darkmoon Dancing Bear
[457485] = true, -- Grizzly Hills Packmaster
[464443] = true, -- Harmonious Salutations Bear
[341821] = true, -- Snowstorm
[229486] = true, -- Vicious War Bear
[229487] = true, -- Vicious War Bear
[ 54753] = true, -- White Polar Bear
}
LM.MOUNTFAMILY["Bee"] = {
[259741] = true, -- Honeyback Harvester
[303767] = true, -- Honeyback Hivemother
[447160] = true, -- Raging Cinderbee
[447057] = true, -- Smoldering Cinderbee
[447151] = true, -- Soaring Meaderbee
[471538] = true, -- Timely Buzzbee
}
LM.MOUNTFAMILY["Beetle"] = {
[381529] = true, -- Telix the Stormhorn
[452779] = true, -- Ivory Goliathus
}
LM.MOUNTFAMILY["Bird"] = {
[414324] = true, -- Gold-Toed Albatross
[471696] = true, -- Hooktalon
[366790] = true, -- Quawks
[437162] = true, -- Polly Roger
[254812] = true, -- Royal Seafeather
[231524] = true, -- Shadowblade's Baneful Omen
[231525] = true, -- Shadowblade's Crimson Omen
[231523] = true, -- Shadowblade's Lethal Omen
[231434] = true, -- Shadowblade's Murderous Omen
[254813] = true, -- Sharkbait
[266925] = true, -- Siltwing Albatross
[171828] = true, -- Solar Spirehawk
[254811] = true, -- Squawks
[471562] = true, -- Thrayir, Eyes of the Siren
[253639] = true, -- Violet Spellwing
[316275] = true, -- Waste Marauder
[316276] = true, -- Wastewander Skyterror
}
LM.MOUNTFAMILY["Bloodswarmer"] = {
[447185] = true, -- Aquamarine Swarmite
[275841] = true, -- Expedition Bloodswarmer
[243795] = true, -- Leaping Veinseeker
[447190] = true, -- Shadowed Swarmite
[447195] = true, -- Swarmite Skyhunter
[449325] = true, -- Vicious Skyflayer (Alliance)
[447405] = true, -- Vicious Skyflayer (Horde)
}
LM.MOUNTFAMILY["Boar"] = {
[171629] = true, -- Armored Frostboar
[171630] = true, -- Armored Razorback
[171627] = true, -- Blacksteel Battleboar
[190690] = true, -- Bristling Hellboar
[190977] = true, -- Deathtusk Felboar
[171634] = true, -- Domesticated Razorback
[171632] = true, -- Frostplains Battleboar
[171635] = true, -- Giant Coldsnout
[171636] = true, -- Great Greytusk
[171628] = true, -- Rocktusk Battleboar
[171637] = true, -- Trained Rocktusk
[171633] = true, -- Wild Goretusk
}
LM.MOUNTFAMILY["Bruffalon"] = {
[349935] = true, -- Noble Bruffalon
[373967] = true, -- Stormtouched Bruffalon
}
LM.MOUNTFAMILY["Brutosaur"] = {
[264058] = true, -- Mighty Caravan Brutosaur
[465235] = true, -- Trader's Gilded Brutosaur
}
LM.MOUNTFAMILY["Butterfly"] = {
[1218014] = true, -- Midnight Butterfly
[1217994] = true, -- Pearlescent Butterfly
[1218012] = true, -- Ruby Butterfly
[1218013] = true, -- Spring Butterfly
}
LM.MOUNTFAMILY["Camel"] = {
[ 88748] = true, -- Brown Riding Camel
[307263] = true, -- Explorer's Dunetrekker
[ 88750] = true, -- Grey Riding Camel
[ 88749] = true, -- Tan Riding Camel
[102488] = true, -- White Riding Camel
}
LM.MOUNTFAMILY["Cat"] = {
[366962] = true, -- Ash'adar, Harbinger of Dawn
[230987] = true, -- Arcanist's Manasaber
[ 16056] = true, -- Ancient Frostsaber
[229385] = true, -- Ban-Lu, Grandmaster's Companion
[ 16055] = true, -- Black Nightsaber
[449132] = true, -- Blackrock Warsaber
[ 22723] = true, -- Black War Tiger
[129934] = true, -- Blue Shado-Pan Riding Tiger
[ 63637] = true, -- Darnassian Nightsaber
[448979] = true, -- Dauntless Imperial Lynx
[200175] = true, -- Felsaber
[ 90621] = true, -- Golden King
[129932] = true, -- Green Shado-Pan Riding Tiger
[366791] = true, -- Jigglesworth Sr.
[288505] = true, -- Kaldorei Nightsaber
[449126] = true, -- Kor'kron Warsaber
[180545] = true, -- Mystic Runesaber
[258845] = true, -- Nightborne Manasaber
[288740] = true, -- Priestess' Moonsaber
[232405] = true, -- Primal Flamesaber
[435153] = true, -- Purple Shado-Pan Riding Tiger
[129935] = true, -- Red Shado-Pan Riding Tiger
[288506] = true, -- Sandy Nightsaber
[ 42776] = true, -- Spectral Tiger
[ 10789] = true, -- Spotted Frostsaber
[454682] = true, -- Startouched Furline
[ 66847] = true, -- Striped Dawnsaber
[ 8394] = true, -- Striped Frostsaber
[ 10793] = true, -- Striped Nightsaber
[317177] = true, -- Sunwarmed Furline
[ 23221] = true, -- Swift Frostsaber
[ 23219] = true, -- Swift Mistsaber
[ 65638] = true, -- Swift Moonsaber
[ 42777] = true, -- Swift Spectral Tiger
[ 23338] = true, -- Swift Stormsaber
[ 96499] = true, -- Swift Zulian Panther
[ 24252] = true, -- Swift Zulian Tiger
[ 10790] = true, -- Tiger
[288503] = true, -- Umber Nightsaber
[448978] = true, -- Vermillion Imperial Lynx
[281887] = true, -- Vicious Black Warsaber
[146615] = true, -- Vicious Kaldorei Warsaber
[394737] = true, -- Vicious Sabertooth
[394738] = true, -- Vicious Sabertooth
[229512] = true, -- Vicious War Lion
[281888] = true, -- Vicious White Warsaber
[ 17229] = true, -- Winterspring Frostsaber
}
LM.MOUNTFAMILY["Charhound"] = {
[253088] = true, -- Antoran Charhound
[253087] = true, -- Antoran Gloomhound
}
LM.MOUNTFAMILY["Clefthoof"] = {
[417245] = true, -- Ancestral Clefthoof
[171620] = true, -- Bloodhoof Bull
[171621] = true, -- Ironhoof Destroyer
[171617] = true, -- Trained Icehoof
[171619] = true, -- Tundra Icehoof
[270560] = true, -- Vicious War Clefthoof
[171616] = true, -- Witherhide Cliffstomper
[ 74918] = true, -- Wooly White Rhino
}
LM.MOUNTFAMILY["Cloudrook"] = {
[447213] = true, -- Alunira
}
LM.MOUNTFAMILY["Cloud Serpent"] = {
[127170] = true, -- Astral Cloud Serpent
[446022] = true, -- Astral Emperor's Serpent
[123992] = true, -- Azure Cloud Serpent
[127156] = true, -- Crimson Cloud Serpent
[123993] = true, -- Golden Cloud Serpent
[148619] = true, -- Grievous Gladiator's Cloud Serpent
[110051] = true, -- Heart of the Aspects
[127169] = true, -- Heavenly Azure Cloud Serpent
[127161] = true, -- Heavenly Crimson Cloud Serpent
[127164] = true, -- Heavenly Golden Cloud Serpent
[127158] = true, -- Heavenly Onyx Cloud Serpent
[315014] = true, -- Ivory Cloud Serpent
[113199] = true, -- Jade Cloud Serpent
[366647] = true, -- Magenta Cloud Serpent
[139407] = true, -- Malevolent Gladiator's Cloud Serpent
[127154] = true, -- Onyx Cloud Serpent
[148620] = true, -- Prideful Gladiator's Cloud Serpent
[315427] = true, -- Rajani Warserpent
[129918] = true, -- Thundering August Cloud Serpent
[139442] = true, -- Thundering Cobalt Cloud Serpent
[124408] = true, -- Thundering Jade Cloud Serpent
[148476] = true, -- Thundering Onyx Cloud Serpent
[132036] = true, -- Thundering Ruby Cloud Serpent
[148618] = true, -- Tyrannical Gladiator's Cloud Serpent
[127165] = true, -- Yu'lei, Daughter of Jade
}
LM.MOUNTFAMILY["Core Hound"] = {
[170347] = true, -- Core Hound
[271646] = true, -- Dark Iron Core Hound
[213209] = true, -- Steelbound Devourer
[414327] = true, -- Sulfur Hound
}
LM.MOUNTFAMILY["Corpsefly"] = {
[353885] = true, -- Battlefield Swarmer
[347250] = true, -- Lord of the Corpseflies
[353883] = true, -- Maldraxxian Corpsefly
[353884] = true, -- Regal Corpsefly
}
LM.MOUNTFAMILY["Courser"] = {
[342335] = true, -- Ascended Skymane
[336064] = true, -- Dauntless Duskrunner
[435103] = true, -- Dashing Windsteed
[435108] = true, -- Daystorm Windsteed
[435107] = true, -- Forest Windsteed
[247402] = true, -- Lucid Nightmare
[354362] = true, -- Maelie, the Wanderer
[222240] = true, -- Prestigious Azure Courser
[281044] = true, -- Prestigious Bloodforged Courser
[222202] = true, -- Prestigious Bronze Courser
[222237] = true, -- Prestigious Forest Courser
[222238] = true, -- Prestigious Ivory Courser
[222241] = true, -- Prestigious Midnight Courser
[222236] = true, -- Prestigious Royal Courser
[280730] = true, -- Pureheart Courser
[1217965] = true, -- Shimmermist Free Runner
[332252] = true, -- Shimmermist Runner
[312765] = true, -- Sundancer
[312767] = true, -- Swift Gloomhoof
[134573] = true, -- Swift Windsteed
[163024] = true, -- Warforged Nightmare
[242875] = true, -- Wild Dreamrunner
}
LM.MOUNTFAMILY["Crab"] = {
[366789] = true, -- Crusty Crawler
[294039] = true, -- Snapback Scuttler
}
LM.MOUNTFAMILY["Crane"] = {
[127174] = true, -- Azure Riding Crane
[435123] = true, -- Gilded Riding Crane
[127176] = true, -- Golden Riding Crane
[127178] = true, -- Jungle Riding Crane
[435124] = true, -- Luxurious Riding Crane
[435128] = true, -- Pale Riding Crane
[127177] = true, -- Regal Riding Crane
[435127] = true, -- Rose Riding Crane
[435126] = true, -- Silver Riding Crane
[435125] = true, -- Tropical Riding Crane
}
LM.MOUNTFAMILY["Crawg"] = {
[250735] = true, -- Bloodgorged Crawg
[273541] = true, -- Underrot Crawg
}
LM.MOUNTFAMILY["Deathroc"] = {
[336041] = true, -- Bonesewn Fleshroc
[327405] = true, -- Colossal Slaughterclaw
[336042] = true, -- Hulking Deathroc
[336045] = true, -- Predatory Plagueroc
}
LM.MOUNTFAMILY["Devourer"] = {
[312776] = true, -- Chittering Animite
[332905] = true, -- Endmire Flyer
[333027] = true, -- Loyal Gorger
[356501] = true, -- Rampaging Mauler
[347536] = true, -- Tamed Mauler
[344659] = true, -- Voracious Gorger
}
LM.MOUNTFAMILY["Direhorn"] = {
[138424] = true, -- Amber Primordial Direhorn
[297560] = true, -- Child of Torcali
[138423] = true, -- Cobalt Primordial Direhorn
[140250] = true, -- Crimson Primal Direhorn
[290608] = true, -- Crusader's Direhorn
[140249] = true, -- Golden Primal Direhorn
[138426] = true, -- Jade Primordial Direhorn
[279474] = true, -- Palehide Direhorn
[138425] = true, -- Slate Primordial Direhorn
[136471] = true, -- Spawn of Horridon
[263707] = true, -- Zandalari Direhorn
}
LM.MOUNTFAMILY["Donkey"] = {
[279608] = true, -- Lil' Donkey
[260174] = true, -- Terrified Pack Mule
}
LM.MOUNTFAMILY["Dragon Turtle"] = {
[227956] = true, -- Arcadian War Turtle
[127286] = true, -- Black Dragon Turtle
[127287] = true, -- Blue Dragon Turtle
[127288] = true, -- Brown Dragon Turtle
[127295] = true, -- Great Black Dragon Turtle
[127302] = true, -- Great Blue Dragon Turtle
[127308] = true, -- Great Brown Dragon Turtle
[127293] = true, -- Great Green Dragon Turtle
[127310] = true, -- Great Purple Dragon Turtle
[120822] = true, -- Great Red Dragon Turtle
[120395] = true, -- Green Dragon Turtle
[127289] = true, -- Purple Dragon Turtle
[127290] = true, -- Red Dragon Turtle
[232525] = true, -- Vicious War Turtle
[232523] = true, -- Vicious War Turtle
}
LM.MOUNTFAMILY["Dragonhawk"] = {
[ 96503] = true, -- Amani Dragonhawk
[142478] = true, -- Armored Blue Dragonhawk
[142266] = true, -- Armored Red Dragonhawk
[ 61996] = true, -- Blue Dragonhawk
[194464] = true, -- Eclipse Dragonhawk
[ 62048] = true, -- Illidari Doomhawk
[ 61997] = true, -- Red Dragonhawk
[ 66088] = true, -- Sunreaver Dragonhawk
[351195] = true, -- Vengeance
}
LM.MOUNTFAMILY["Drake"] = {
[ 60025] = true, -- Albino Drake
[ 59567] = true, -- Azure Drake
[420097] = true, -- Azure Worldchiller
[ 59650] = true, -- Black Drake
[107842] = true, -- Blazing Drake
[ 59568] = true, -- Blue Drake
[ 59569] = true, -- Bronze Drake
[1214946] = true, -- Broodling of Sinestra
[124550] = true, -- Cataclysmic Gladiator's Twilight Drake
[377071] = true, -- Crimson Gladiator's Drake
[229387] = true, -- Deathlord's Vilebrood Vanquisher
[424539] = true, -- Draconic Gladiator's Drake
[175700] = true, -- Emerald Drake
[110039] = true, -- Experiment 12-B
[113120] = true, -- Feldrake
[360954] = true, -- Highland Drake
[201098] = true, -- Infinite Timereaver
[107845] = true, -- Life-Binder's Handmaiden
[ 93623] = true, -- Mottled Drake
[294197] = true, -- Obsidian Worldbreaker
[ 69395] = true, -- Onyxian Drake
[ 59570] = true, -- Red Drake
[101821] = true, -- Ruthless Gladiator's Twilight Drake
[326390] = true, -- Steamscale Incinerator
[290132] = true, -- Sylverian Dreamer
[101641] = true, -- Tarecgosa's Visage (Item)
[407555] = true, -- Tarecgosa's Visage (Mount)
[359843] = true, -- Tangled Dreamweaver
[279466] = true, -- Twilight Avenger
[ 59571] = true, -- Twilight Drake
[107844] = true, -- Twilight Harbinger
[302143] = true, -- Uncorrupted Voidwing
[101282] = true, -- Vicious Gladiator's Twilight Drake
}
LM.MOUNTFAMILY["Dread Raven"] = {
[183117] = true, -- Corrupted Dreadwing
[155741] = true, -- Dread Raven
}
LM.MOUNTFAMILY["Dreadsteed"] = {
[ 48778] = true, -- Acherus Deathcharger
[171847] = true, -- Cindermane Charger
[ 73313] = true, -- Crimson Deathcharger
[ 23161] = true, -- Dreadsteed
[ 5784] = true, -- Felsteed
[ 36702] = true, -- Fiery Warhorse
[ 48025] = true, -- Headless Horseman's Mount
[238454] = true, -- Netherlord's Accursed Wrathsteed
[238452] = true, -- Netherlord's Brimstone Wrathsteed
[232412] = true, -- Netherlord's Chaotic Wrathsteed
[413922] = true, -- Valiance
}
LM.MOUNTFAMILY["Dreamsaber"] = {
[424479] = true, -- Evening Sun Dreamsaber
[424482] = true, -- Mourning Flourish Dreamsaber
[424474] = true, -- Shadow Dusk Dreamsaber
[424476] = true, -- Winter Night Dreamsaber
}
LM.MOUNTFAMILY["Dreamstag"] = {
[423871] = true, -- Blossoming Dreamstag
[423891] = true, -- Lunar Dreamstag
[423877] = true, -- Rekindled Dreamstag
[427226] = true, -- Stargrazer
[423873] = true, -- Suntouched Dreamstag
}
LM.MOUNTFAMILY["Dreamtalon"] = {
[427041] = true, -- Ochre Dreamtalon
[427043] = true, -- Snowfluff Dreamtalon
[426955] = true, -- Springtide Dreamtalon
[427224] = true, -- Talont
[434470] = true, -- Vicious Dreamtalon (Alliance)
[434477] = true, -- Vicious Dreamtalon (Horde)
}
-- Note DRIVE is translated in all all languages (from flag data)
LM.MOUNTFAMILY["DRIVE"] = {
[460013] = true, -- G-99 Breakneck
}
LM.MOUNTFAMILY["Eagle"] = {
[385260] = true, -- Bestowed Ohuna Spotter
[463133] = true, -- Coldflame Tempest
[385262] = true, -- Duskwing Ohuna
[395644] = true, -- Divine Kiss of Ohn'ahra
}
LM.MOUNTFAMILY["Eel"] = {
[466145] = true, -- Vicious Electro Eel (Horde)
[466146] = true, -- Vicious Electro Eel (Alliance)
}
LM.MOUNTFAMILY["Elderhorn"] = {
[213339] = true, -- Great Northern Elderhorn
[193007] = true, -- Grove Defiler
[189999] = true, -- Grove Warden
[242874] = true, -- Highmountain Elderhorn
[258060] = true, -- Highmountain Thunderhoof
[196681] = true, -- Spirit of Eche'ro
[288712] = true, -- Stonehide Elderhorn
}
LM.MOUNTFAMILY["Elekk"] = {
[171626] = true, -- Armored Irontusk
[254259] = true, -- Avenging Felcrusher
[294568] = true, -- Beastlord's Irontusk
[ 48027] = true, -- Black War Elekk
[254258] = true, -- Blessed Felcrusher
[ 34406] = true, -- Brown Elekk
[171625] = true, -- Dusty Rockhide
[ 73629] = true, -- Exarch's Elekk
[ 63639] = true, -- Exodar Elekk
[254069] = true, -- Glorious Felcrusher
[ 35710] = true, -- Gray Elekk
[ 35713] = true, -- Great Blue Elekk
[ 73630] = true, -- Great Exarch's Elekk
[ 35712] = true, -- Great Green Elekk
[ 35714] = true, -- Great Purple Elekk
[ 65637] = true, -- Great Red Elekk
[258022] = true, -- Lightforged Felcrusher
[171622] = true, -- Mottled Meadowstomper
[ 35711] = true, -- Purple Elekk
[171624] = true, -- Shadowhide Pearltusk
[171623] = true, -- Trained Meadowstomper
[223578] = true, -- Vicious War Elekk
}
LM.MOUNTFAMILY["Elemental"] = {
[448941] = true, -- Beledar's Spawn
[358072] = true, -- Bound Blizzard
[231442] = true, -- Farseer's Raging Tempest
[289555] = true, -- Glacial Tidestorm
[334482] = true, -- Restoration Deathwalker
[424009] = true, -- Runebound Firelord
[448939] = true, -- Shackled Shadow
[448934] = true, -- Shadow of Doubt
[340068] = true, -- Sintouched Deathwalker
[358319] = true, -- Soultwisted Deathwalker
[348162] = true, -- Wandering Ancient
[359407] = true, -- Wastewarped Deathwalker
}
LM.MOUNTFAMILY["Fathom Dweller"] = {
[359381] = true, -- Cryptic Aurelid
[342680] = true, -- Deepstar Aurelid
[359380] = true, -- Depthstalker
[223018] = true, -- Fathom Dweller
[308814] = true, -- Ny'alotha Allseer
[253711] = true, -- Pond Nettle
[359379] = true, -- Shimmering Aurelid
[278979] = true, -- Surf Jelly
}
LM.MOUNTFAMILY["Fathom Ray"] = {
[292407] = true, -- Ankoan Waveray
[292419] = true, -- Azshari Bloatray
[367620] = true, -- Coral-Stalker Waveray
[300149] = true, -- Silent Glider
[302794] = true, -- Swift Spectral Fathom Ray
[291538] = true, -- Unshackled Waveray
}
LM.MOUNTFAMILY["Felbat"] = {
[449466] = true, -- Forged Gladiator's Fel Bat
[229417] = true, -- Slayer's Felbroken Shrieker
[272472] = true, -- Undercity Plaguebat
}
LM.MOUNTFAMILY["Fey Dragon"] = {
[142878] = true, -- Enchanted Fey Dragon
[425338] = true, -- Flourishing Whimsydrake
}
LM.MOUNTFAMILY["Fire Hawk"] = {
[1216542] = true, -- Blazing Royal Fire Hawk
[ 97560] = true, -- Corrupted Fire Hawk
[ 97501] = true, -- Felfire Hawk
[ 97493] = true, -- Pureblood Fire Hawk
}
LM.MOUNTFAMILY["Fish"] = {
[214791] = true, -- Brinedeep Bottom-Feeder
[448850] = true, -- Kah, Legend of the Deep
[448851] = true, -- Underlight Corrupted Behemoth
[448849] = true, -- Underlight Shorestalker
[397406] = true, -- Wonderous Wavewhisker
}
LM.MOUNTFAMILY["Flying Carpet"] = {
[169952] = true, -- Creeping Carpet
[468353] = true, -- Enchanted Spellweave Carpet
[ 61451] = true, -- Flying Carpet
[ 75596] = true, -- Frosty Flying Carpet
[233364] = true, -- Leywoven Flying Carpet
[432455] = true, -- Noble Flying Carpet
[ 61309] = true, -- Magnificent Flying Carpet
}
LM.MOUNTFAMILY["Fox"] = {
[427435] = true, -- Crimson Glimmerfur
[431357] = true, -- Fur-endship Fox
[430225] = true, -- Gilnean Prowler0
[171850] = true, -- Llothien Prowler
[431359] = true, -- Soaring Sky Fox
[431360] = true, -- Twilight Sky Prowler
[242897] = true, -- Vicious War Fox
[242896] = true, -- Vicious War Fox
[290133] = true, -- Vulpine Familiar
[334366] = true, -- Wild Glimmerfur Prowler
}
LM.MOUNTFAMILY["Gargon"] = {
[332932] = true, -- Crypt Guardian
[332949] = true, -- Desire's Loyal Hound
[333021] = true, -- Gravestone Battle Gargon
[312753] = true, -- Harnessed Hopecrusher
[332923] = true, -- Inquisition Intimidator
[333023] = true, -- Silessa
[332927] = true, -- Sinfall Gargon
[312754] = true, -- Vrednic
}
LM.MOUNTFAMILY["Glowmite"] = {
[447176] = true, -- Cyan Glowmite
}
LM.MOUNTFAMILY["Goat"] = {
[130138] = true, -- Black Riding Goat
[130086] = true, -- Brown Riding Goat
[435133] = true, -- Little Red Riding Goat
[435131] = true, -- Snowy Riding Goat
[130137] = true, -- White Riding Goat
}
LM.MOUNTFAMILY["Gorm"] = {
[312763] = true, -- Darkwarren Hardshell
[334365] = true, -- Pale Acidmaw
[334364] = true, -- Spinemaw Gladechewer
[340503] = true, -- Umbral Scythehorn
[348769] = true, -- Vicious War Gorm
[348770] = true, -- Vicious War Gorm
[352441] = true, -- Wild Hunt Legsplitter
}
LM.MOUNTFAMILY["Gravewing"] = {
[369476] = true, -- Amalgam of Rage
[215545] = true, -- Mastercraft Gravewing
[353866] = true, -- Obsidian Gravewing
[353873] = true, -- Pale Gravewing
[353872] = true, -- Sinfall Gravewing
}
LM.MOUNTFAMILY["Gronnling"] = {
[189364] = true, -- Coalfist Gronnling
[171436] = true, -- Gorestrider Gronnling
[186828] = true, -- Primal Gladiator's Felblood Gronnling
[171849] = true, -- Sunhide Gronnling
[189044] = true, -- Warmongering Gladiator's Felblood Gronnling
[189043] = true, -- Wild Gladiator's Felblood Gronnling
}
LM.MOUNTFAMILY["Gryphon"] = {
[302361] = true, -- Alabaster Stormtalon
[417888] = true, -- Algarian Stormrider
[ 61229] = true, -- Armored Snowy Gryphon
[466811] = true, -- Chaos-Forged Gryphon
[275859] = true, -- Dusky Waycrest Gryphon
[ 32239] = true, -- Ebon Gryphon
[ 32235] = true, -- Golden Gryphon
[135416] = true, -- Grand Armored Gryphon
[136163] = true, -- Grand Gryphon
[413827] = true, -- Harbor Gryphon
[229377] = true, -- High Priest's Lightsworn Seeker
[ 64749] = true, -- Loaned Gryphon
[275868] = true, -- Proudmoore Sea Scout
[414323] = true, -- Ravenous Black Gryphon
[441324] = true, -- Remembered Golden Gryphon
[ 32240] = true, -- Snowy Gryphon
[107516] = true, -- Spectral Gryphon
[275866] = true, -- Stormsong Coastwatcher
[ 32242] = true, -- Swift Blue Gryphon
[ 32290] = true, -- Swift Green Gryphon
[ 32292] = true, -- Swift Purple Gryphon
[ 32289] = true, -- Swift Red Gryphon
[302796] = true, -- Swift Spectral Armored Gryphon
[ 55164] = true, -- Swift Spectral Gryphon
[ 54729] = true, -- Winged Steed of the Ebon Blade
}
LM.MOUNTFAMILY["Hand"] = {
[352309] = true, -- Hand of Bahmethra
[339957] = true, -- Hand of Hrestimorak
[354354] = true, -- Hand of Nilganihmaht
[459193] = true, -- Hand of Reshkigaal
[354355] = true, -- Hand of Salaranga
}
LM.MOUNTFAMILY["Hawkstrider"] = {
[ 35022] = true, -- Black Hawkstrider
[ 35020] = true, -- Blue Hawkstrider
[342668] = true, -- Desertwing Hunter
[370620] = true, -- Elusive Emerald Hawkstrider
[230401] = true, -- Ivory Hawkstrider
[359372] = true, -- Mawdapted Raptora
[ 35018] = true, -- Purple Hawkstrider
[359373] = true, -- Raptora Swooper
[ 34795] = true, -- Red Hawkstrider
[ 63642] = true, -- Silvermoon Hawkstrider
[259202] = true, -- Starcursed Voidstrider
[ 66091] = true, -- Sunreaver Hawkstrider
[ 35025] = true, -- Swift Green Hawkstrider
[ 33660] = true, -- Swift Pink Hawkstrider
[ 35027] = true, -- Swift Purple Hawkstrider
[ 65639] = true, -- Swift Red Hawkstrider
[ 35028] = true, -- Swift Warstrider
[ 46628] = true, -- Swift White Hawkstrider
[223363] = true, -- Vicious Warstrider
}
LM.MOUNTFAMILY["Helicid"] = {
[408313] = true, -- Big Slick in the City
[359376] = true, -- Bronze Helicid
[1218069] = true, -- Emerald Snail
[374157] = true, -- Gooey Snailemental
[350219] = true, -- Magmashell
[346719] = true, -- Serenade
[374162] = true, -- Scrappy Worldsnail
[374155] = true, -- Shellack
[359378] = true, -- Scarlet Helicid
[359377] = true, -- Unsuccessful Prototype Fleetpod
[409032] = true, -- Vicious War Snail
[409034] = true, -- Vicious War Snail
}
LM.MOUNTFAMILY["Hippogryph"] = {
[ 63844] = true, -- Argent Hippogryph
[ 74856] = true, -- Blazing Hippogryph
[ 43927] = true, -- Cenarion War Hippogryph
[466812] = true, -- Chaos-Forged War Hippogryph
[242881] = true, -- Cloudwing Hippogryph
[102514] = true, -- Corrupted Hippogryph
[149801] = true, -- Emerald Hippogryph
[452643] = true, -- Frayfeather Hippogryph
[ 97359] = true, -- Flameward Hippogryph
[225765] = true, -- Leyfeather Hippogryph
[215159] = true, -- Long-Forgotten Hippogryph
[ 66087] = true, -- Silver Covenant Hippogryph
[239363] = true, -- Swift Spectral Hippogryph
[274610] = true, -- Teldrassil Hippogryph
[359013] = true, -- Val'sharah Hippogryph
}
LM.MOUNTFAMILY["Hivemind"] = {
[261395] = true, -- The Hivemind
}
LM.MOUNTFAMILY["Horse"] = {
[259213] = true, -- Admiralty Stallion
[ 66906] = true, -- Argent Charger
[ 67466] = true, -- Argent Warhorse
[ 470] = true, -- Black Stallion
[ 22717] = true, -- Black War Steed
[295387] = true, -- Bloodflank Charger
[279457] = true, -- Broken Highland Mustang
[ 458] = true, -- Brown Horse
[ 75614] = true, -- Celestial Steed
[ 23214] = true, -- Charger
[ 6648] = true, -- Chestnut Mare
[341639] = true, -- Court Sinrunner
[ 68188] = true, -- Crusader's Black Warhorse
[ 68187] = true, -- Crusader's White Warhorse
[260172] = true, -- Dapple Gray
[354353] = true, -- Fallen Charger
[278966] = true, -- Fiery Hearthsteed
[136505] = true, -- Ghastly Charger
[260175] = true, -- Goldenmane
[142073] = true, -- Hearthsteed
[279456] = true, -- Highland Mustang
[231435] = true, -- Highlord's Golden Charger
[231589] = true, -- Highlord's Valorous Charger
[231587] = true, -- Highlord's Vengeful Charger
[231588] = true, -- Highlord's Vigilant Charger
[ 72286] = true, -- Invincible
[282682] = true, -- Kul Tiran Charger
[339956] = true, -- Mawsworn Charger
[103195] = true, -- Mountain Horse
[ 16082] = true, -- Palomino
[ 472] = true, -- Pinto
[193695] = true, -- Prestigious War Steed
[ 66090] = true, -- Quel'dorei Steed
[354351] = true, -- Sanctum Gloomcharger
[255695] = true, -- Seabraid Stallion
[339588] = true, -- Sinrunner Blanchy
[354352] = true, -- Soulbound Gloomcharger
[260173] = true, -- Smoky Charger
[315315] = true, -- Spectral Bridle
[ 92231] = true, -- Spectral Steed
[ 63232] = true, -- Stormwind Steed
[ 68057] = true, -- Swift Alliance Steed
[ 23229] = true, -- Swift Brown Steed
[ 65640] = true, -- Swift Gray Steed
[103196] = true, -- Swift Mountain Horse
[ 23227] = true, -- Swift Palomino
[ 23228] = true, -- Swift White Steed
[ 48954] = true, -- Swift Zhevra
[ 49322] = true, -- Swift Zhevra
[ 34767] = true, -- Thalassian Charger
[ 34769] = true, -- Thalassian Warhorse
[107203] = true, -- Tyrael's Charger
[223341] = true, -- Vicious Gilnean Warhorse
[100332] = true, -- Vicious War Steed
[ 13819] = true, -- Warhorse
[ 468] = true, -- White Stallion
[ 16083] = true, -- White Stallion
}
LM.MOUNTFAMILY["Hound"] = {
[344228] = true, -- Battle-Bound Warhound
[344577] = true, -- Bound Shadehound
[344578] = true, -- Corridor Creeper
[343635] = true, -- Deadsoul Hound Harness
[189998] = true, -- Illidari Felstalker
[369666] = true, -- Grimhowl
[312762] = true, -- Mawsworn Soulhunter
[343632] = true, -- Maw Seeker Harness
[352742] = true, -- Undying Darkhound
[341766] = true, -- Warstitched Darkhound
}
LM.MOUNTFAMILY["Hyena"] = {
[237287] = true, -- Alabaster Hyena
[466001] = true, -- Blackwater Bonecrusher
[306423] = true, -- Caravan Hyena
[465999] = true, -- Crimson Armored Growler
[237286] = true, -- Dune Scavenger
[466002] = true, -- Violet Armored Growler
}
LM.MOUNTFAMILY["Infernal"] = {
[171840] = true, -- Coldflame Infernal
[213134] = true, -- Felblaze Infernal
[213349] = true, -- Flarecore Infernal
[213350] = true, -- Frostshard Infernal
[171827] = true, -- Hellfire Infernal
}
LM.MOUNTFAMILY["Jawcrawler"] = {
[447957] = true, -- Ferocious Jawcrawler
}
LM.MOUNTFAMILY["Kodo"] = {
[367875] = true, -- Armored Siege Kodo
[ 22718] = true, -- Black War Kodo
[ 49378] = true, -- Brewfest Riding Kodo
[ 18990] = true, -- Brown Kodo
[288499] = true, -- Frightened Kodo
[ 18989] = true, -- Gray Kodo
[ 49379] = true, -- Great Brewfest Kodo
[ 23249] = true, -- Great Brown Kodo
[ 65641] = true, -- Great Golden Kodo
[ 23248] = true, -- Great Gray Kodo
[ 69826] = true, -- Great Sunwalker Kodo
[ 23247] = true, -- Great White Kodo
[ 18991] = true, -- Green Kodo
[ 18363] = true, -- Riding Kodo
[ 69820] = true, -- Sunwalker Kodo
[ 18992] = true, -- Teal Kodo
[ 63641] = true, -- Thunder Bluff Kodo
[185052] = true, -- Vicious War Kodo
[ 64657] = true, -- White Kodo
}
LM.MOUNTFAMILY["Krolusk"] = {
[288736] = true, -- Azureshell Krolusk
[279454] = true, -- Conqueror's Scythemaw
[239049] = true, -- Obsidian Krolusk
[288735] = true, -- Rubyshell Krolusk
}
LM.MOUNTFAMILY["Larion"] = {
[342334] = true, -- Gilded Prowler
[341776] = true, -- Highwind Darkmane
[334433] = true, -- Silverwind Larion
}
LM.MOUNTFAMILY["Magic"] = {
[229376] = true, -- Archmage's Prismatic Disc
[353263] = true, -- Cartel Master's Gearglider
[431992] = true, -- Compass Rose
[419345] = true, -- Eve's Ghastly Rider
[ 42667] = true, -- Flying Broom
[435044] = true, -- Golden Discus
[472479] = true, -- Love Witch's Sweeper
[ 47977] = true, -- Magic Broom
[435082] = true, -- Mogu Hazeblazer
[130092] = true, -- Red Flying Cloud
[435084] = true, -- Sky Surfer
[472489] = true, -- Sky Witch's Sweeper
[472487] = true, -- Silvermoon Sweeper
[359318] = true, -- Soaring Spelltome
[473137] = true, -- Soweezi's Vintage Waveshredder
[346554] = true, -- Tazavesh Gearglider
[472488] = true, -- Twilight Witch's Sweeper
[334352] = true, -- Wildseed Cradle
}
LM.MOUNTFAMILY["Mammoth"] = {
[374172] = true, -- Bestowed Trawling Mammoth
[ 59785] = true, -- Black War Mammoth
[ 59788] = true, -- Black War Mammoth
[ 61465] = true, -- Grand Black War Mammoth
[ 61467] = true, -- Grand Black War Mammoth
[ 60140] = true, -- Grand Caravan Mammoth
[ 60136] = true, -- Grand Caravan Mammoth
[ 61469] = true, -- Grand Ice Mammoth
[ 61470] = true, -- Grand Ice Mammoth
[ 59797] = true, -- Ice Mammoth
[ 59799] = true, -- Ice Mammoth
[373859] = true, -- Loyal Magmammoth
[427546] = true, -- Mammyth
[374194] = true, -- Mossy Mammoth
[374196] = true, -- Plainswalker Bearer
[374275] = true, -- Raging Magmammoth
[374278] = true, -- Renewed Magmammoth
[371176] = true, -- Subterranean Magmammoth
[ 61447] = true, -- Traveler's Tundra Mammoth
[ 61425] = true, -- Traveler's Tundra Mammoth
[ 59791] = true, -- Wooly Mammoth
[ 59793] = true, -- Wooly Mammoth
}
LM.MOUNTFAMILY["Mana Ray"] = {
[344574] = true, -- Bulbous Necroray
[235764] = true, -- Darkspore Mana Ray
[253108] = true, -- Felglow Mana Ray
[427777] = true, -- Heartseeker Mana Ray
[344576] = true, -- Infested Necroray
[253107] = true, -- Lambent Mana Ray
[344575] = true, -- Pestilent Necroray
[253109] = true, -- Scintillating Mana Ray
[253106] = true, -- Vibrant Mana Ray
}
LM.MOUNTFAMILY["Mechanical"] = {
[405623] = true, -- Armadillo Roller
[290718] = true, -- Aerial Unit R-21/X
[466023] = true, -- Asset Advocator
[ 71342] = true, -- Big Love Rocket
[466024] = true, -- Bilgewater Bombardier
[466019] = true, -- Blackwater Shredder Deluxe Mk 2
[473188] = true, -- Bronze Goblin Waveshredder
[359545] = true, -- Carcinized Zerethsteed (but not)
[171846] = true, -- Champion's Treadblade
[179244] = true, -- Chauffeured Mechano-Hog
[179245] = true, -- Chauffeured Mekgineer's Chopper
[1217235] = true, -- Crimson Shreddertank
[1221694] = true, -- Enterprising Shreddertank
[448186] = true, -- Crowd Pummeler 2-30
[466018] = true, -- Darkfuse Demolisher
[466027] = true, -- Darkfuse Spy-Eye
[247448] = true, -- Darkmoon Dirigible
[446052] = true, -- Delver's Dirigible
[466133] = true, -- Delver's Gob-Trotter
[458335] = true, -- Diamond Mechsuit
[126507] = true, -- Depleted-Kyparium Rocket
[307256] = true, -- Explorer's Jungle Hopper
[182912] = true, -- Felsteel Annihilator
[ 44153] = true, -- Flying Machine
[289083] = true, -- G.M.O.D.
[126508] = true, -- Geosynchronous World Spinner
[ 87090] = true, -- Goblin Trike
[ 87091] = true, -- Goblin Turbo-Trike
[428067] = true, -- Hatefored Blazecycle
[428013] = true, -- Incognitro, the Indecipherable Felcycle
[466017] = true, -- Innovation Investigator
[297157] = true, -- Junkheap Drifter
[239013] = true, -- Lightforged Warframe
[472253] = true, -- Lunar Launcher
[448188] = true, -- Machine Defense Unit 1-11
[466025] = true, -- Margin Manipulator
[466028] = true, -- Mean Green Flying Machine
[281554] = true, -- Meat Wagon
[261437] = true, -- Mecha-Mogul Mk2
[296788] = true, -- Mechacycle Model W
[299158] = true, -- Mechagon Peacekeeper