-
Notifications
You must be signed in to change notification settings - Fork 35
/
Locales.lua
2127 lines (2104 loc) · 82.9 KB
/
Locales.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
local L
L = LibStub("AceLocale-3.0"):NewLocale("Rarity", "enUS", true)
-- L["AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"] = true
L["Writhing Transmutagen"] = true
L["When enabled, Rarity will not add tooltip information for items that aren't being tracked."] = true
L["Hide untracked items in tooltips"] = true
L["Reins of Anu'relos, Flame's Guidance"] = true
L["Awakened Cache"] = true
L["Machine Defense Unit 1-11"] = true
L["Malfunctioning Mechsuit"] = true
L["Dauntless Imperial Lynx"] = true
L["Bop"] = true
L["Dropped by any mob in Isle of Dorn (except minor mobs). 10 of these can be combined to pierce Alunira's shield, allowing combat and a guaranteed drop of Alunira."] =
true
L["Crackling Shard"] = true
L["Alunira"] = true
L["Wick's Lead"] = true
L["Regurgitated Mole Reins"] = true
L["Beledar's Spawn"] = true
L["Reins of the Sureki Skyrazor"] = true
L["The War Within"] = true
L["Noble Flying Carpet"] = true
L["Clayscale Hornstrider"] = true
L["Falling Star Catcher"] = true
L["Falling Star Flinger"] = true
L["Festive Trans-Dimensional Bird Whistle"] = true
L["Moltenbinder's Disciple"] = true
L["Molten Lava Ball"] = true
L["Arfus"] = true
L["Toggle Debug Window"] = true
L["Darkmoon Rabbit"] = true
L["Disgusting Vat"] = true
L["Fished from Disgusting Vat located within the Zskera Vaults"] = true
L["Horn of the White War Wolf"] = true
L["Reins of the Ravenous Black Gryphon"] = true
L["N'Ruby"] = true
L["Killbot 9000"] = true
L["Gill'dan"] = true
L["Jeepers"] = true
L["Obsidian Warwhelp"] = true
L["Briarhorn Hatchling"] = true
L["Devourer Lobstrok"] = true
L["Underlight Queen"] = true
L["Teardrop Moth"] = true
L["Aquifon"] = true
L["Aquapo"] = true
L["Kob'rok"] = true
L["Skaarn"] = true
L["Ridged Shalewing"] = true
L["Blaise"] = true
L["Ambre"] = true
L["Disable tracking for ALL mounts. You'll have to enable those that you wish to track manually afterwards."] = true
L["Untrack all mounts"] = true
L["Echo of the Cave"] = true
L["Echo of the Inferno"] = true
L["Echo of the Depths"] = true
L["Echo of the Heights"] = true
L["Shaggy"] = true
L["Doomrubble"] = true
L["Bag of Furious Winds"] = true
L["Invoq"] = true
L["Molten Lava Pack"] = true
L["Dinn"] = true
L["Dinn's Drum"] = true
L["Shadeisethal"] = true
L["Kretchenwrath"] = true
L["Fyrakk's Frenzy"] = true
L["Reins of the Quantum Courser"] = true
L["Cloak of Many Faces"] = true
L["Mage's Chewed Wand"] = true
L["Primalist Prison"] = true
L["Talisman of Sargha"] = true
L["This item can also be purchased from a vendor."] = true
L["Reins of the Scourgebound Vanquisher"] = true
L["Perfected Juggernaut"] = true
L["Felstorm Dragon"] = true
L["Sulfur Hound's Leash"] = true
L["Gold-Toed Albatross"] = true
L["Can be used to summon %s, but only once per day"] = true
L["Strange Goop"] = true
L["This item appears to be a guaranteed drop for the player who summoned %s"] = true
L["Hirukon"] = true
L["Deepstar Polyp"] = true
L["Sturdy Silver Mawrat Harness"] = true
L["Geordy"] = true
L["Sphere of Enlightened Cogitation"] = true
L["Xy'rath the Covetous"] = true
L["Xy'rath's Booby-Trapped Cache"] = true
L["Sandworn Chest"] = true
L["Makaris's Satchel of Mines"] = true
L["Spectral Mawrat's Tail"] = true
L["Mawsworn Supply Chest"] = true
L["Rhuv, Gorger of Ruin"] = true
L["Iska's Mawrat Leash"] = true
L["Close Window"] = true
L["Use CMD+C to copy and CMD+V to paste"] = true
L["Use CTRL+C to copy and CTRL+V to paste"] = true
L["You can ask questions, follow the latest Rarity news and share the excitement of finally getting that one elusive drop with your fellow collectors in our Discord server.\n\nPS: We have cookies."] =
true
L["You can follow the development process or contribute to the project on our public GitHub repository. What could be more fun than browsing a gigantic backlog of unresolved issues?"] =
true
L["Join the Rarity Discord"] = true
L["Contribute on GitHub"] = true
L["Community"] = true
L["Displays accumulated profiling data for the current session."] = true
L["Show profiling data"] = true
L["This is merely a shortcut introduced to make life easier for developers, and as a regular player you can safely ignore it."] =
true
L["Deletes accumulated profiling data for the current session."] = true
L["Reset profiling data"] = true
L["Sorting is disabled"] = true
L["Disable sorting inside the main window. Can be used to troubleshoot performance issues."] = true
L["Disable sorting"] = true
L["Performance"] = true
L["Outrider's Bridle Chain"] = true
L["Starts a series of quests that ultimately award Kua'fon's Harness (Pterrordax mount)"] = true
L["Pterrordax Egg"] = true
L["Magni Bronzebeard"] = true
L["Only members of the Necrolord covenant will be able to reach this cache."] = true
L["Rarity"] = true
L["Ascended Skymane"] = true
L["Unstable Portal Emitter"] = true
L["Vixx's Chest of Tricks"] = true
L["Jar of Ashes"] = true
L["Pommel Jewel of Remornia"] = true
L["Spinemaw Gormling"] = true
L["Vial of Roiling Emotions"] = true
L["Sludge Feeler"] = true
L["Micromancer's Mystical Cowl"] = true
L["Larion Cub"] = true
L["Hungry Burrower"] = true
L["Stonewing Dredwing Pup"] = true
L["Torghast Lurker"] = true
L["Maw Crawler"] = true
L["Crimson Dredwing Pup"] = true
L["Lightbinders"] = true
L["Amalgamation of Light"] = true
L["Severs"] = true
L["Decaying Mawrat"] = true
L["Hissing Deathroach"] = true
L["Maw Stalker"] = true
L["Frenzied Mawrat"] = true
L["Undying Deathroach"] = true
L["Bottled Up Rage"] = true
L["Prideful Hulk"] = true
L["Manifestation of Wrath"] = true
L["Lost Featherling"] = true
L["Devoured Wader"] = true
L["Hopecrusher Gargon"] = true
L["Hopecrusher"] = true
L["Sometimes contained in the caches awarded for completing any covenant's Calling in Maldraxxus. Will hatch into one of three Necroray mounts after three days."] =
true
L["Necroray Egg"] = true
L["Note: Your existing settings will be overwritten."] = true
L["Set all battle pets to be tracked repeatedly."] = true
L["Set all battle pets to NOT be tracked repeatedly."] = true
L["Untrack pets repeatedly"] = true
L["Track pets repeatedly"] = true
L["Tracking Overrides"] = true
L["Cleared accountwide statistics"] = true
L["Clear accountwide statistics"] = true
L["Clears the accountwide statistics saved for all characters. You can use this to remove the attempts stored for characters that no longer exist in their original form, e.g., after a server transfer, realm merge, or name change. After clearing this cached data, you will have to log into each character once so attempts can be updated from their statistics again."] =
true
L["Cached Data"] = true
L["Removing data for obsolete item %s"] = true
L["Disables the detailed (red) error messages that are used by the addon to detect invalid states rather than allowing it to crash. Any detected errors will still be handled, but you won't see the notification."] =
true
L["Disable Rarity-specific error messages"] = true
L["Eye of Corruption"] = true
L["Void-Scarred Anubisath"] = true
L["Fractured Obsidian Claw"] = true
L["Aqir Hivespawn"] = true
L["Ra'kim"] = true
L["Cursed Dune Watcher"] = true
L["Jade Defender"] = true
L["Can be used to capture the Ivory Cloud Serpent"] = true
L["Zan-Tien Lasso"] = true
L["Battle for Azeroth"] = true
L["Overly Sensitive Void Spectacles"] = true
L["Void-Touched Souvenir Totem"] = true
L["Xinlao"] = true
L["Anh-De the Loyal"] = true
L["Reins of the Drake of the Four Winds"] = true
L["Ishak of the Four Winds"] = true
L["Malevolent Drone"] = true
L["Corpse Eater"] = true
L["Clutch of Ha-Li"] = true
L["Ha-Li"] = true
L["Ren's Stalwart Hound"] = true
L["Houndlord Ren"] = true
L["Waste Marauder"] = true
L["Rotfeaster"] = true
L["K'uddly"] = true
L["The Forgotten"] = true
L["Black Chitinous Plate"] = true
L["Skikx'traz"] = true
L["Corrupted Tentacle"] = true
L["Will of N'zoth"] = true
L["Stinky Sack"] = true
L["Lord Aj'qirai"] = true
L["Hell-Bent Bracers"] = true
L["The Grand Executor"] = true
L["Budget K'thir Disguise"] = true
L["Yiphrim the Will Ravager"] = true
L["Trans-mogu-rifier"] = true
L["Tashara"] = true
L["Pristine Cloud Serpent Scale"] = true
L["Wicked Lurker"] = true
L["Amalgamation of Flesh"] = true
L["Rei Lun"] = true
L["Slightly Damp Pile of Fur"] = true
L["Dunegorger Kraulok"] = true
L["All-Seeing Right Eye"] = true
L["Gaze of N'Zoth"] = true
L["All-Seeing Left Eye"] = true
L["Shares a spawn with %s"] = true
L["Foul Observer"] = true
L["Snarling Butterfly Crate"] = true
L["Honey Smasher"] = true
L["Mail Muncher"] = true
L["Mailbox"] = true
L["Corrupted Chest"] = true
L['Box Labeled "Danger: Void Rat Inside"'] = true
L["Swirling Black Bottle"] = true
L["Voidwoven Cat Collar"] = true
L["Void-Link Frostwolf Collar"] = true
L["C'Thuffer"] = true
L["Void-Scarred Hare"] = true
L["Box With Faintly Glowing 'Air' Holes"] = true
L["Pearlescent Glimmershell"] = true
L["Mechagon Peacekeeper"] = true
L["Microbot 8D"] = true
L["Golden Snorf"] = true
L["Echoing Oozeling"] = true
L["Reclamation Rig"] = true
L["Glimmering Chest"] = true
L["Sandclaw Nestseeker"] = true
L["Armored Vaultbot"] = true
L["Pile of Coins"] = true
L["Mindlost Bloodfrenzy"] = true
L["Lightless Ambusher"] = true
L["Zanj'ir Poker"] = true
L["Amethyst Softshell"] = true
L["Brinestone Algan"] = true
L["Avarius"] = true
L["Budding Algan"] = true
L["Caverndark Nightmare"] = true
L["Caverndark Terror"] = true
L["Chitterspine Needler"] = true
L["Coral Lashling"] = true
L["Carnivorous Lasher"] = true
L["Daggertooth Frenzy"] = true
L["Glittering Diamondshell"] = true
L["Murgle"] = true
L["King Gakula"] = true
L["Necrofin Tadpole"] = true
L["Blindlight"] = true
L["Sandkeep"] = true
L["Scalebrood Hydra"] = true
L["Scale Matriarch Vynara"] = true
L["Scale Matriarch Gratinax"] = true
L["Scale Matriarch Zodia"] = true
L["Seafury"] = true
L["Prince Typhonus"] = true
L["Skittering Eel"] = true
L["Vor'koth"] = true
L["Spawn of Nalaada"] = true
L["Elderspawn Nalaada"] = true
L["Stormwrath"] = true
L["Prince Vortran"] = true
L["Wriggler"] = true
L["Arachnoid Skitterbot"] = true
L["Mecharantula"] = true
L["Bonebiter"] = true
L["Bonepicker"] = true
L["Lost Robogrip"] = true
L["Malfunctioning Beastbot"] = true
L["Snowsoft Nibbler"] = true
L["Spraybot 0D"] = true
L["The Kleptoboss"] = true
L["Nameless Octopode"] = true
L["Mechagonian Sawblades"] = true
L["Shadescale"] = true
L["Shassera"] = true
L["Shirakess Warning Sign"] = true
L["Tidemistress Leth'sindra"] = true
L["Judgment of Mechagon"] = true
L["The Rusty Prince"] = true
L["Flopping Fish"] = true
L["Memento of the Deeps"] = true
L["Zanj'ir Weapon Rack"] = true
L["Underlight Sealamp"] = true
L["Royal Snapdragon"] = true
L["Rusted Keys to the Junkheap Drifter"] = true
L["Rustfeather"] = true
L["Rusty Mechanocrawler"] = true
L["Arachnoid Harvester"] = true
L["Silent Glider"] = true
L["Experimental"] = true
L["Verify item database on login"] = true
L["Run the verification routine automatically after logging in. It can always be run manually (by typing %s)."] = true
L["Advanced"] = true
L["Adventurous Hopling Pack"] = true
L["Ghostly Whelpling"] = true
L["Validating item database... this shouldn't take long!"] = true
L["We didn't find any errors in your database. Yay!"] = true
L["Validation failed for item: %s"] = true
L["We found %d invalid items in your database!"] = true
L["Stoneclaw"] = true
L["Wayward Spirit"] = true
L["Celestial Gift"] = true
L["Mogu Statue"] = true
L["Kor'thik Swarmling"] = true
L["Tiny Amber Wings"] = true
L["Spawn of Garalon"] = true
L["Amber Goo Puddle"] = true
L["Essence of Pride"] = true
L["Azure Cloud Serpent Egg"] = true
L["Spirit of the Spring"] = true
L["Great Sea Ray"] = true
L["Risen Mare"] = true
L["Island Thunderscale"] = true
L["Bloodgorged Hunter"] = true
L["Stonehide Elderhorn"] = true
L["Baby Stonehide"] = true
L["Leatherwing Screecher"] = true
L["Rotting Ghoul"] = true
L["Thunderscale Whelpling"] = true
L["Scritches"] = true
L["Tonguelasher"] = true
L["Lord Woofington"] = true
L["Firesting Buzzer"] = true
L["Needleback Pup"] = true
L["Shadefeather Hatchling"] = true
L["G.M.O.D."] = true
L["Spawn of Krag'wa"] = true
L["Thundering Scale of Akunda"] = true
L["Enchanted Talon of Pa'ku"] = true
L["Darkshore Sentinel"] = true
L["Burninator Mark V"] = true
L["Rattling Bones"] = true
L["Conflagros"] = true
L["Everburning Treant"] = true
L["Zim'kaga"] = true
L["Onu"] = true
L["Binding of Cyclarus"] = true
L["Cyclarus"] = true
L["Bottled Essence of Hydrath"] = true
L["Hydrath"] = true
L["Squishy Purple Goo"] = true
L["Soggoth the Slitherer"] = true
L["Zur'aj the Depleted"] = true
L["Twilight Prophet Graeme"] = true
L["Nightwreathed Egg"] = true
L["Will hatch into Nightwreathed Watcher pet after five days."] = true
L["Grimhorn"] = true
L["Orwell Stevenson"] = true
L["Detoxified Blight Grenade"] = true
L["Gren Tornfur"] = true
L["Highborne Memento"] = true
L["Commander Drald"] = true
L["Thelar Moonstrike"] = true
L["Narassin's Soul Gem"] = true
L["Athrikus Narassin"] = true
L["Twiddle Twirler: Sentinel's Glaive"] = true
L["Commander Ral'esh"] = true
L["Twiddle Twirler: Shredder Blade"] = true
L["Sapper Odette"] = true
L["Ashenvale Chimaera"] = true
L["Alash'anir"] = true
L["Caged Bear"] = true
L["Agathe Wyrmwood"] = true
L["Blackpaw"] = true
L["Kaldorei Nightsaber"] = true
L["Captured Kaldorei Nightsaber"] = true
L["Croz Bloodrage"] = true
L["Shadowclaw"] = true
L["Umber Nightsaber"] = true
L["Moxo the Beheader"] = true
L["Athil Dewfire"] = true
L["Captured Umber Nightsaber"] = true
L["Warbeast Kraal Dinner Bell"] = true
L["Rallying War Banner"] = true
L["Azerite Firework Launcher"] = true
L["Bowl of Glowing Pufferfish"] = true
L["Kojo's Master Matching Set"] = true
L["Proudmoore Music Box"] = true
L["Albatross Feather"] = true
L["Cobalt Raven Hatchling"] = true
L["Bewitching Tea Set"] = true
L["Violet Abyssal Eel"] = true
L["For da Blood God!"] = true
L["Pair of Tiny Bat Wings"] = true
L["Goldtusk Inn Breakfast Buffet"] = true
L["Words of Akunda"] = true
L["Meerah's Jukebox"] = true
L["Goldenmane's Reins"] = true
L["Reins of a Tamed Bloodfeaster"] = true
L["Chewed-On Reins of the Terrified Pack Mule"] = true
L["Captured Dune Scavenger"] = true
L["Horde controls Stromgarde"] = true
L["Alliance controls Stromgarde"] = true
L["Scuttle"] = true
L["Captain Nibs"] = true
L["Barnaby"] = true
L["Poro"] = true
L["Octopode Fry"] = true
L["Inky"] = true
L["Sparkleshell Sandcrawler"] = true
L["Kindleweb Spiderling"] = true
L["Mischievous Zephyr"] = true
L["Littlehoof"] = true
L["Snapper"] = true
L["Sunscale Hatchling"] = true
L["Bloodstone Tunneler"] = true
L["Snort"] = true
L["Muskflank Calfling"] = true
L["Juvenile Brineshell"] = true
L["Kunchong Hatchling"] = true
L["Coldlight Surfrunner"] = true
L["Voru'kar Leecher"] = true
L["Tinder Pup"] = true
L["Sandshell Chitterer"] = true
L["Deathsting Scorpid"] = true
L["Thistlebrush Bud"] = true
L["Giggling Flame"] = true
L["Laughing Stonekin"] = true
L["Playful Frostkin"] = true
L["False Knucklebump"] = true
L["Craghoof Kid"] = true
L["Oomgut Ritual Drum"] = true
L["Whiskerwax Candle"] = true
L["Yaungol Oil Stove"] = true
L["Jinyu Light Globe"] = true
L["Enchanted Soup Stone"] = true
L["Magic Monkey Banana"] = true
L["Bad Mojo Banana"] = true
L["Regenerating Banana Bunch"] = true
L["Viable Cobra Egg"] = true
L["Dropped by Merektha in Temple of Sethraliss. Will hatch into Spawn of Merektha pet after three days."] = true
L["Twilight Avenger"] = true
L["Craghorn Chasm-Leaper"] = true
L["Qinsho's Eternal Hound"] = true
L["Squawks"] = true
L["Brazier Cap"] = true
L["Geomancer Flintdagger"] = true
L["Molok Morion"] = true
L["Molok the Crusher"] = true
L["Kovork Kostume"] = true
L["Kovork"] = true
L["Witherbark Gong"] = true
L["Zalas Witherbark"] = true
L["Coldrage's Cooler"] = true
L["Kor'gresh Coldrage"] = true
L["Magic Fun Rock"] = true
L["Ruul Onestone"] = true
L["Syndicate Mask"] = true
L["Singer"] = true
L["Spectral Visage"] = true
L["Horrific Apparition"] = true
L["Foul Belly"] = true
L["Foulbelly"] = true
L["Toy War Machine"] = true
L["The Lion's Roar"] = true
L["Toy Siege Tower"] = true
L["Doom's Howl"] = true
L["Mana-Warped Egg"] = true
L["Man-Hunter Rog"] = true
L["Fuzzy Creepling"] = true
L["Venomarus"] = true
L["Aldrusian Sproutling"] = true
L["Branchlord Aldrus"] = true
L["Tiny Grimoire"] = true
L["Darbel Montrose"] = true
L["Teeny Titan Orb"] = true
L["Echo of Myzrael"] = true
L["Scabby"] = true
L["Yogursa"] = true
L["Angry Egg"] = true
L["Ragebeak"] = true
L["Shard of Fozruk"] = true
L["Fozruk"] = true
L["Plagued Egg"] = true
L["Plaguefeather"] = true
L["Cave Entrance"] = true
L["Surf Jelly"] = true
L["Witherbark Direwing"] = true
L["Nimar the Slayer"] = true
L["Lil' Donkey"] = true
L["Overseer Krix"] = true
L["Skullripper"] = true
L["Swift Albino Raptor"] = true
L["Beastrider Kama"] = true
L["Highland Mustang"] = true
L["Doomrider Helgrim"] = true
L["Broken Highland Mustang"] = true
L["Knight-Captain Aldrin"] = true
L["Sharkbait's Favorite Crackers"] = true
L["Underrot Crawg Harness"] = true
L["Mummified Raptor Skull"] = true
L["Loading"] = true
L["Loaded (running in debug mode)"] = true
L["Profile modified, rebooting"] = true
L["(running in debug mode)"] = true
L["Grow Up"] = true
L["Debug mode OFF"] = true
L["Debug mode ON"] = true
L["None"] = true
L["Tooltip can't be shown in combat"] = true
L["Rarity is loading..."] = true
L["Welcome to Rarity r%d. Your settings have been reset."] = true
L["The Rarity Options module has been disabled. Log out and enable it from your add-ons menu."] = true
L["Obtained On Your First Attempt"] = true
L["Obtained After %d Attempts"] = true
L["Unknown"] = true
L["Attempts"] = true
L["Total Attempts"] = true
L["Current Attempts"] = true
L["Last Obtained In"] = true
L["Progress"] = true
L["Likelihood"] = true
L["Time"] = true
L["Battle Pets"] = true
L["%s: %d attempt"] = true
L["%s: %d attempts"] = true
L["Luckiness"] = true
L["Lucky"] = true
L["Unlucky"] = true
L["Mounts"] = true
L[" (Group)"] = true
L["Shift-Click to open options"] = true
L["Click to toggle the progress bar"] = true
L["%d attempt - %.2f%%"] = true
L["%d attempts - %.2f%%"] = true
L["Found on your first attempt!"] = true
L["Found after %d attempts!"] = true
L["%s: collection completed!"] = true
L["Toys & Items"] = true
L["%s: %d attempt (%d total)"] = true
L["%s: %d attempts (%d total)"] = true
L["%s: Found on the first attempt!"] = true
L["%s: Found after %d attempts!"] = true
L["Dwarf"] = true
L["Draenei"] = true
L["Fossil"] = true
L["Night Elf"] = true
L["Nerubian"] = true
L["Orc"] = true
L["Tol'vir"] = true
L["Troll"] = true
L["Vrykul"] = true
L["Other"] = true
L["Drops from NPC(s)"] = true
L["Drops from a boss requiring a group"] = true
L["Drops from any mob in a zone"] = true
L["Obtained by using an item or opening a container"] = true
L["Obtained by fishing"] = true
L["Obtained as an archaeology project"] = true
L["Mount"] = true
L["Battle Pet"] = true
L["Toy or Item"] = true
L["Usually requires a group of around %d players"] = true
L["1 in %d chance"] = true
L["Lucky if you obtain in %d or less"] = true
L["Since last drop"] = true
L["Time spent farming"] = true
L["Chance so far"] = true
L["Total"] = true
L["Total found"] = true
L["Bunny Hunter is running. Would you like Rarity to import data from Bunny Hunter now? Disable Bunny Hunter or click Yes if you don't want to be asked again."] =
true
L["Data has been imported from Bunny Hunter"] = true
L["#%d: %d attempt (%.2f%%)"] = true
L["#%d: %d attempts (%.2f%%)"] = true
L["Already known"] = true
L["General"] = true
L["Show minimap icon"] = true
L["Turns on a minimap icon for Rarity. Use this option if you don't have an LDB display add-on."] = true
L["Announcements"] = true
L["Enable announcements"] = true
L["Enables announcements whenever you complete a new attempt toward anything Rarity is tracking. You can also enable announcements per-item, but this is the master switch."] =
true
L["Feed text"] = true
L["Controls what type of text is shown in Rarity's LDB feed. Minimal shows just the number of attempts. Normal adds the likelihood percent, and verbose adds the item link."] =
true
L["Minimal"] = true
L["Normal"] = true
L["Verbose"] = true
L["%d attempts"] = true
L["%d attempt"] = true
L["%s: %d attempt - %.2f%%"] = true
L["%s: %d attempts - %.2f%%"] = true
L["%s: %d attempt (%d total) - %.2f%%"] = true
L["%s: %d attempts (%d total) - %.2f%%"] = true
L["%s: %d collected - %.2f%%"] = true
L["Create a new item to track"] = true
L["Delete this item"] = true
L["Are you sure you want to delete this item?"] = true
L["Create a New Item"] = true
L["New item"] = true
L["Custom"] = true
L["To create a new item, enter a unique name for the item, and click Okay. The name will be used if the server does not return the item link or if the item is invalid.\n\nYou can't change this name after you create the item, so choose it well."] =
true
L["Item ID"] = true
L["The item ID to track. This is the item as it appears in your inventory or in a loot window. Use WowHead or a similar service to lookup item IDs. This must be a valid number and must be unique."] =
true
L["You must enter an item ID."] = true
L["You must enter a valid number."] = true
L["You entered an item ID that is already being used by another item."] = true
L["How likely the item is to appear, expressed as 1 in X, where X is the number you enter here."] = true
L["Chance"] = true
L["You must enter an amount."] = true
L["You must enter a number larger than 1."] = true
L["You must enter a number larger than or equal to 0."] = true
L["How many attempts you've made so far."] = true
L["Track this"] = true
L["Determines whether tracking should be enabled for this item. Items that are disabled will not appear in the tooltip."] =
true
L["Repeatable"] = true
L["Determines whether you want to repeatedly farm this item. If you turn this on and find the item, Rarity will mark the item as un-found after a few seconds."] =
true
L["Enables announcements whenever you complete a new attempt toward this item."] = true
L["Type of item"] = true
L["Announce"] = true
L["Determines what type of item this is."] = true
L["Identify the Item"] = true
L["Toggles"] = true
L["Statistics"] = true
L["Spell ID"] = true
L["You must enter a spell ID."] = true
L["You entered a spell ID that is already being used by another item."] = true
L["The spell ID of the item once you've learned it. This applies only to mounts and companions, and is the spell as it appears in your spell book after learning the item. Use WowHead or a similar service to lookup spell IDs. This must be a valid number and must be unique."] =
true
L["You must enter a number larger than 0."] = true
L["Method of obtaining"] = true
L["Determines how this item is obtained."] = true
L["Group size"] = true
L["The number of players it takes to obtain the item. This will lower your chances of obtaining the item."] = true
L["Equal odds"] = true
L["Turn this on if the item requires a group to obtain, but every player gets an equal chance to obtain the item. This currently only applies to some of the holiday mounts. When you turn this on, Rarity will stop lowering your chance to obtain based on the group size."] =
true
L["Archaeology race"] = true
L["Determines which race includes this archaeology project."] = true
L["Zones"] = true
L["A comma-separated list of the zones or sub-zones this item can be found in. For zones, you can enter either the Map ID (i.e. 811 is Vale of Eternal Blossoms), or the full name of the zone. For sub-zones, you must enter the full name of the sub-zone.\n\nEnter zone names with proper spelling, capitalization, and punctuation. They can be entered either in US English or your client's local language. Use WowHead or a similar service to make sure you're entering the zone names perfectly.\n\nPLEASE NOTE: Zone translations may not be correct. For zones, it is highly recommended that you use the Map ID instead of the name. For sub-zones, you must enter the name. If sub-zone detection isn't working for you, please visit the LibBabble-SubZone-3.0 library page on wowace.com and update the translations for your language."] =
true
L["One of the Map IDs you entered (%s) is incorrect. Please enter numbers larger than zero."] = true
L["You must enter at least one zone."] = true
L["Please enter a comma-separated list of zones."] = true
L["One of the zones or sub-zones you entered (%s) cannot be found. Check that it is spelled correctly, and is either US English or your client's local language."] =
true
L["Items to Use"] = true
L["A comma-separated list of item IDs which, when used or opened, can give you this item. Use WowHead or a similar service to lookup item IDs."] =
true
L["You must enter at least one item ID."] = true
L["Please enter a comma-separated list of item IDs."] = true
L["Every item ID must be a number greater than 0."] = true
L["NPCs"] = true
L["A comma-separated list of NPC IDs who drop this item. Use WowHead or a similar service to lookup NPC IDs."] = true
L["You must enter at least one NPC ID."] = true
L["Please enter a comma-separated list of NPC IDs."] = true
L["Every NPC ID must be a number greater than 0."] = true
L["The name you entered is already being used by another item. Please enter a unique name."] = true
L["You entered a reserved name. Please enter the correct item name as it appears in game."] = true
L["Click to switch to this item"] = true
L["Shift-Click to link your progress to chat"] = true
L["%s: 0/%d attempts so far (%.2f%% - %s)"] = true
L["%s: 0/%d attempt so far (%.2f%% - %s)"] = true
L["lucky"] = true
L["unlucky"] = true
L["Requires a pool"] = true
L["Determines whether the item can only be obtained from fishing in pools. In order for this option to work, the fishing pools must have all been translated into your client's language."] =
true
L["Special case"] = true
L["Obtained by mining"] = true
L["Mysterious Camel Figurine"] = true
L["Obtained by mining Elementium Vein"] = true
L["Session"] = true
L["Today"] = true
L["Yesterday"] = true
L["Last Week"] = true
L["Last Month"] = true
L["Left"] = true
L["Right"] = true
L["Hidden"] = true
L["Controls on which side the secondary tooltip appears when you hover over an item in the main tooltip. If the main tooltip is on the right side of your screen, change this to Left. Otherwise, choose Right. You can also hide the status tooltip completely."] =
true
L["Kill Statistic IDs"] = true
L["A comma-separated list of Statistic IDs that track the number of kills toward obtaining this item."] = true
L["You must enter at least one Statistic ID."] = true
L["Please enter a comma-separated list of Statistic IDs."] = true
L["A comma-separated list of Statistic IDs that track the number of kills toward obtaining this item. These statistics will be added together. Use WowHead or a similar service to locate statistic IDs."] =
true
L["Ctrl-Click to change sort order"] = true
L["Sorting by name"] = true
L["Sorting by difficulty"] = true
L["Sorting by percent complete"] = true
L["Progress Bar"] = true
L["Width"] = true
L["Height"] = true
L["Scale"] = true
L["Show anchor"] = true
L["Locked"] = true
L["Other Requirements"] = true
L["Horde only"] = true
L["This item is only available to Horde players."] = true
L["Alliance only"] = true
L["This item is only available to Alliance players."] = true
L["Debug mode"] = true
L["Enter 1 or leave this blank to mark the item as soloable."] = true
L["Classic"] = true
L["The Burning Crusade"] = true
L["Wrath of the Lich King"] = true
L["Cataclysm"] = true
L["Mists of Pandaria"] = true
L["Holiday"] = true
L["Content Category"] = true
L["These toggles control which items appear in the main Rarity tooltip. Items are categorized by the expansion they were introduced in (although holiday items have a separate category). Turning off these checkboxes does not turn off tracking for any items within the category; it simply hides the item from the tooltip in order to help reduce the number of items in it."] =
true
L["Hide high chance items"] = true
L["When on, this option hides any item with a drop chance of 1 in 49 or better. The item is merely hidden from the tooltip in order to keep it clean. Items hidden in this fashion are still tracked like normal."] =
true
L["Undefeated"] = true
L["Defeated"] = true
L["Creature ID"] = true
L["The NPC ID of the creature that is spawned when you summon this pet. This is used to track account-wide battle pets."] =
true
L["You must enter a creature ID."] = true
L["You entered a creature ID that is already being used by another item."] = true
L["Mantid"] = true
L["Pandaren"] = true
L["Mogu"] = true
L["Enable Coins"] = true
L["When any good-luck coin is used within about 90 seconds of an attempt on this item, another attempt will be counted for this item. Only enable this for items which can legitimately be obtained from coin rolls."] =
true
L["Warlords of Draenor"] = true
L["Arakkoa"] = true
L["Draenor Clans"] = true
L["Ogre"] = true
L["Obtained by collecting a number of items"] = true
L["Collect %d %s"] = true
L["Collected"] = true
L["Dropped from dinosaurs on Isle of Giants"] = true
L["Collection complete!"] = true
L["%d collected - %.2f%%"] = true
L["Collection Complete"] = true
L["How many items you've collected so far."] = true
L["Collection Size"] = true
L["How many items you need to collect."] = true
L["Item ID to Collect"] = true
L["The item ID that you need to collect. Rarity uses the number of this item that you have in your bags as your progress. Use WowHead or a similar service to lookup item IDs. This must be a valid number and must not be used by another item."] =
true
L["You entered an item ID that is already set as the collected item for something else."] = true
L["%s: %d collected"] = true
L["Rarity: "] = true
L["Enable tooltip additions"] = true
L["When enabled, Rarity will add obtainable items to game tooltips whenever possible."] = true
L["Blank line before tooltip additions"] = true
L["This causes Rarity to put a blank line above its tooltip additions."] = true
L["Font"] = true
L["Texture"] = true
L["Font Size"] = true
L["Right-Aligned"] = true
L["Show Icon"] = true
L["Show Text"] = true
L["Obtained Achievement ID"] = true
L["Set this to the achievement ID which indicates this item has been obtained. This is useful for items which do not yield mounts or pets, but which do grant an achievement when obtained, such as Old Crafty or Old Ironjaw. Leave this blank for mounts and pets. Use WowHead to find achievement IDs."] =
true
L["You entered a achievement ID that is already being used by another item."] = true
L["Instance Difficulty"] = true
L["Determines which instance difficulties this item may be obtained in. Leave everything unchecked if the instance difficulty doesn't matter.\n\nIf you specified a Statistic ID for this item, the Instance Difficulty is probably meaningless, because all modern statistics already incorporate the difficulty.\n\nYou can check multiple items in this list at once."] =
true
L["Take screenshots"] = true
L["When on, Rarity will take a screenshot when an item is found."] = true
L["Already known"] = true
L["(%d/%d attempts)"] = true
L["(%d/%d collected)"] = true
L["Show attempts in tooltips"] = true
L["When enabled, Rarity tooltips will include how many attempts you've made."] = true
L["Hide obtained items in tooltips"] = true
L["When enabled, Rarity will not add tooltip information for items you've already obtained."] = true
L["Already defeated"] = true
L["Unavailable"] = true
L["Hide unavailable items"] = true
L["When on, items marked as Unavailable will be hidden from the tooltip. This way, items requiring a certain holiday will automatically be hidden when the holiday is not active."] =
true
L["Holiday reminders"] = true
L["When on, Rarity will remind you to go farm holiday items you're missing if the holiday is active and the item is set as Undefeated. (This only works for items that originate from holiday dungeons or daily quests.) The reminder occurs each time you log in or reload your UI, and stops for the day once you defeat the holiday dungeon or complete the quest."] =
true
L["A holiday event is available today for %s! Go get it!"] = true
L["You can turn off holiday reminders as a whole or on an item-by-item basis by visiting the Rarity Options screen."] =
true
L["Sorting by category, then name"] = true
L["Show category icons"] = true
L["When on, Rarity will show an icon next to each item in the tooltip indicating which expansion the item belongs to."] =
true
L["Primary tooltip scale"] = true
L["Adjusts the scale of the primary tooltip. This will take effect the next time the tooltip is shown."] = true
L["Rarity Tooltip Options"] = true
L["World Tooltip Options"] = true
L["General Options"] = true
L["Tooltip activation"] = true
L["On hover"] = true
L["On click"] = true
L['If "On click" is selected, activating the tracker is done via CTRL + SHIFT + Click, otherwise it\'s activated with a simple click.'] =
true
L["Left click"] = true
L["Open Rarity window"] = true
L["Right click"] = true
L["Toggle tracker"] = true
L["Shift + Left click"] = true
L["Open settings"] = true
L["Ctrl + Left click"] = true
L["Change sorting"] = true
L["Secondary tooltip display"] = true
L["Requires Pickpocketing"] = true
L["When enabled, the item can only be obtained by pickpocketing. The item will be marked Unavailable for non-rogues."] =
true
L["Required for %s"] = true
L["Already defeated for %s"] = true
L["Profiling ON"] = true
L["Profiling OFF"] = true
L["Enable profiling"] = true
L["When enabled, Rarity will print debug profiling messages to the chat window when certain things happen. This is used to determine which parts of the code are slow."] =
true
L["Use your bonus roll for a chance at this item"] = true
L["There are more holiday items available, but Rarity only reminds you about the first two."] = true
L["Rarity has %d |4coordinate:coordinates; for this item."] = true
L["You already defeated %d of them."] = true
L["Ctrl-Click to create the remaining TomTom waypoint(s)."] = true
L["Ctrl-Click to create TomTom waypoint(s)."] = true
L["Install TomTom to enable waypoint creation."] = true
L["Added %d |4waypoint:waypoints; to TomTom"] = true
L["Hide defeated items"] = true
L["When on, items marked as Defeated will be hidden from the tooltip."] = true
L["%d |4waypoint:waypoints; |4is:are; located inside |4an instance:instances; and |4was:were; not added"] = true
L["You already defeated all of them."] = true
L["Zone"] = true
L["%d |4zone:zones;"] = true
L["Draenor Garrison"] = true
L["and %d |4other zone:other zones;"] = true
L["Found in: "] = true
L["Show Time column"] = true
L["When on, the Time column will be shown in the main tooltip."] = true
L["Show Luckiness column"] = true
L["When on, the Luckiness column will be shown in the main tooltip."] = true
L["Show Zone column"] = true
L["When on, the Zone column will be shown in the main tooltip."] = true
L["Legion"] = true
L["Demonic"] = true
L["Highmountain Tauren"] = true
L["Highborne"] = true
L["Primary tooltip hide delay"] = true
L["When you move your mouse out of the Rarity tooltip, it will take this long before it automatically hides itself."] =
true
L["Defeat Detection"] = true
L["Quest ID"] = true
L["A comma-separated list of quest IDs. When these quest IDs are completed, the item is considered defeated."] = true
L["Please enter a comma-separated list of Quest IDs."] = true
L["Every Quest ID must be a number greater than 0."] = true
L["Options"] = true
L["Dungeon ID"] = true
L["A dungeon ID which, when marked as completed by the game client, will cause this item to be considered Defeated. This is primarily used for holiday items which have unique dungeon IDs."] =
true
L["Boss Name"] = true
L["The boss name, in English (enUS), which appears in the instance lock inside the Raid Info panel. The name will be translated to your local language automatically using the LibBoss library (if detection fails, check that the translation exists in this library). IMPORTANT: This method of defeat detection only works when the boss exists in one place at a time. Certain bosses, such as Ragnaros and Kael'thas Sunstrider, exist in two instances at once. Those bosses can be used here, but killing them in either of their instances will result in this Defeat Detection triggering."] =
true
L["Only announce when found"] = true
L["Announcements will only be triggered when the item is found. When this is off, Rarity will announce every attempt and when the item is found."] =
true
L["Death Knight"] = true
L["Demon Hunter"] = true
L["Evoker"] = true
L["Druid"] = true
L["Hunter"] = true
L["Mage"] = true
L["Monk"] = true
L["Paladin"] = true
L["Priest"] = true
L["Rogue"] = true
L["Shaman"] = true
L["Warlock"] = true
L["Warrior"] = true
L["Disable for classes"] = true
L["Choose which classes this item should be disabled for. Checking a class below hides the item from the Rarity tooltip and prevents it from being tracked. You can still toggle Track This, but the item will not track for any classes specified here."] =
true
L["Export this item"] = true
L["Check this for every Custom item you wish to export. Then click on the Import/Export tab and click the Export button. This checkbox will be disabled until enough information has been filled in below to make it a detectable item."] =
true
L["Import/Export"] = true
L["This tab lets you import and export items into and out of your Custom tab."] = true
L["Import Rarity Item Pack"] = true
L["To import a group of items, paste a Rarity Item Pack string into the Import text box below and click the Import button. Rarity will tell you which items were imported (or which ones failed to import) in your chat window. You can find many Rarity Item Packs on the Curse web site, or elsewhere on the web."] =
true
L["Export Rarity Item Pack"] = true
L["To export a group of items, go through each item in your Custom tab and check or uncheck the Export checkbox. The checkbox will be disabled if you haven't yet filled out enough information for Rarity to detect the item. Once you've done that, return here and click the Export button. A Rarity Item Pack string will be generated that you can copy to the clipboard using Ctrl-C."] =
true
L["Unable to retrieve item information from the server"] = true
L["Rarity Item Pack String"] = true
L["Paste a Rarity Item Pack String here using Ctrl-V, then click the Import button."] = true
L["Import"] = true
L["Are you sure you want to import the Rarity Item Pack you entered?"] = true
L["Export"] = true
L["The following %d item(s) have been selected to export:"] = true
L["(Items listed in red could not be found on the server and may not exist. Consider removing them.)"] = true
L["Copy the generated Rarity Export String below using Ctrl-C. You can then paste it elsewhere using Ctrl-V.\n\nFeel free to post it on Curse, GitHub, or Discord to share your Item Pack. We will publish the best ones to the main add-on page."] =
true
L["Clear All Exports"] = true
L["Are you sure you want to turn off the Export toggle for all your Custom items?"] = true
L["Error serializing item pack"] = true
L["Error compressing item pack"] = true
L["Close"] = true
L["Error encoding item pack"] = true
L["Here is a preview of what will (or won't) be imported:"] = true
L["The selected Rarity Item Pack string is invalid."] = true
L["Here is a preview of what will (or won't) be imported:"] = true
L["(Warning: item could not be retrieved from server)"] = true
L["will be imported"] = true
L["an item already exists by this name, so it will not be imported"] = true
L["an item with the same Item ID already exists, so it will not be imported"] = true
L["not imported"] = true
L["imported successfully"] = true
L["Obtained Quest ID"] = true
L["Certain items, such as Illusions in your wardrobe, flag a completed Quest ID when you learn them. Rarity can automatically stop tracking this item if you enter that Quest ID here. (Only one ID, not a list.)"] =
true
L["Hide items with no attempts"] = true
L["When on, items that have no attempts yet will be hidden from the tooltip."] = true
L['Put "Rarity:" on a separate line'] = true
L['When on, the text "Rarity:" will be put on its own line in world and item tooltips.'] = true
L["Distance"] = true
L["Sorting by zone"] = true
L["Hide items not in your zone"] = true
L["When on, only items that can be obtained in your current zone will be shown in the tooltip. When this is on and you're in an instance, the instance difficulty is also checked to make sure it matches what the item supports."] =
true
L["No items to display! Either you've obtained every item, or you have\none or more options turned on which hide things from the tooltip."] =
true
L["When on, Rarity will generate an achievement alert pop-up indicating that you obtained an item."] = true
L["Show achievement"] = true
L["Primary tooltip show delay"] = true
L["When you move your mouse over the Rarity minimap icon, it will take this long before the GUI opens."] = true
-- Sources
-- L[""] = true -> This seems pointless and breaks the import feature on WowAce, therefore I disabled it. I left it here because I really don't understand why it has been added and kept around for almost 4 years, so...eh ¯\_(ツ)_/¯
L["This was a guaranteed drop for players who defeated the encounter when it was current"] = true
L["Players have a personal loot chance to obtain this item."] = true
L["All players can participate in killing this world boss once per week, regardless of faction"] = true
L["Contained in bonus satchels"] = true
L["Appears in the Black Market"] = true
L["Can be obtained with a bonus roll"] = true
L["This item is only obtainable by Alliance players"] = true
L["This item is only obtainable by Horde players"] = true
L["All raid formats except Raid Finder"] = true
L["Any raid size or difficulty"] = true
L["25-player heroic"] = true
L["Mythic difficulty"] = true
L["Heroic difficulty"] = true
L["Any difficulty"] = true
L["Any raid size"] = true
L["Heroic, any raid size"] = true
L["Only Raid Finder difficulty"] = true
L["Raid Finder or Flexible difficulty"] = true
L["40-player Event raid"] = true
L["5-player Event instance"] = true
L["25-player Event scenario"] = true
L["Mythic 5-player instance"] = true
L["Timewalker 5-player instance"] = true
L["Dropped by Yogg-Saron in Ulduar with no Keepers assisting"] = true
L["Dropped by Malygos in The Eye of Eternity (any raid size)"] = true
L["Dropped by Koralon the Flame Watcher, Emalon the Storm Watcher, Archavon the Stone Watcher, and Toravon the Ice Watcher in Vault of Archavon (any raid size)."] =
true
L["Contained in Cracked Egg, which is obtained by becoming Revered with The Oracles, purchasing a Mysterious Egg from their reputation vendor, and waiting three days. The mount has a 5% chance to appear in the Cracked Egg."] =
true
L["Contained in Ripe Disgusting Jar, which is obtained by becoming Revered with Frenzyheart Tribe, purchasing a Disgusting Jar from their reputation vendor, and waiting three days."] =
true
L["Dropped by Onyxia in Onyxia's Lair (any raid size)"] = true
L["Contained in Hyldnir Spoils, which is rewarded for completing daily quests given by Gretta the Arbiter in Brunnhildar Village, Storm Peaks. The mount has a 3% chance to appear in Hyldnir Spoils."] =
true
L["Obtained very rarely by fishing in pools located in any expansion zone (not Classic zones)"] = true
L["Dropped by Ultraxion in Dragon Soul (any raid size or difficulty)"] = true
L["Obtained as a rare project for the Fossil branch of archaeology"] = true
L["Dropped by the Madness of Deathwing encounter in Dragon Soul (any raid size or difficulty)"] = true
L["Guaranteed drop from Dormus the Camel-Hoarder. Accessing this encounter requires finding a rare Mysterious Camel Figurine in Uldum. These are difficult to spot and, when clicked, have a small chance to grant you access to the Dormus encounter. Rarity will count how many Figurines you've found if you mouseover them."] =
true
L["Obtained as a very rare project for the Tol'vir branch of archaeology"] = true
L["Dropped by the Madness of Deathwing encounter in Dragon Soul (heroic, any raid size)"] = true
L["The Warbringer will be riding the mount color he has a chance to drop."] = true
L["Can be contained in Heart-Shaped Box, rewarded for defeating the World Event Dungeon during Love is in the Air."] =
true
L["Can be contained in Keg-Shaped Treasure Chest, rewarded for defeating the World Event Dungeon during Brewfest."] =
true
L["Can be contained in Loot-Filled Pumpkin, rewarded for defeating the World Event Dungeon during Hallow's End."] = true
L["Dropped by Elegon in Mogu'shan Vaults (all raid formats except Raid Finder)"] = true
L["Obtained by fishing in pools located in Terrokar Forest"] = true
L["Obtained by fishing in any water in Orgrimmar"] = true
L["Obtained by fishing in any water in Ironforge"] = true