-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtokenNameTypeahead.js
More file actions
1253 lines (1252 loc) · 25 KB
/
tokenNameTypeahead.js
File metadata and controls
1253 lines (1252 loc) · 25 KB
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
let monsters = [
"Aarakocra simulacrum",
"Aarakocra",
"Abjurer",
"Aboleth",
"Abyssal chicken",
"Acererak",
"Acolyte",
"Aeorian hunter",
"Ahmaergo",
"Air elemental",
"Alastrah",
"Albino dwarf",
"Aldani (lobsterfolk)",
"Alexei Holstmann",
"Allip",
"Allosaurus",
"Almiraj",
"Amble",
"Ambush drake",
"Ammalia Cassalanter",
"Amphisbaena (Theros)",
"Amphisbaena",
"Amrik Vanthampur",
"Anarch",
"Anchorite of Talos",
"Angel",
"Animated Armor",
"Animated jade serpent",
"Animated table",
"Animated tile creature",
"Animated tree",
"Ankheg",
"Ankylosaurus",
"Anointed",
"Anvilwroughts",
"Ape",
"Apprentice wizard",
"Archdruid",
"Archer",
"Archmage",
"Archon mounts",
"Arclight phoenix",
"Arkhan the Cruel",
"Arrester",
"Artifact creature",
"Artus Cimber",
"Asharra",
"Assassin bug",
"Assassin vine",
"Assassin",
"Assemblage of rusty steel",
"Astral dreadnought",
"Atropal",
"Attendant",
"Aurelia",
"Aurinax",
"Aurochs",
"Auspicia Dran",
"Avatar of death",
"Avatars",
"Awakened shrub",
"Awakened tree",
"Awakened zurkhwood",
"Axe beak",
"Azbara Jos",
"Azer",
"Baba Lysaga",
"Baboon",
"Badger",
"Balhannoth",
"Banderhobb",
"Bandit captain",
"Bandit",
"Banshee",
"Barbatos",
"Bard",
"Barghest",
"Barnibus Blastwind",
"Barovian witch",
"Basilisk (Theros)",
"Basilisk",
"Bat",
"Batterboar",
"Batterboar, huge batterboar",
"Behir",
"Beholder",
"Bel",
"Belaphoss",
"Benthid",
"Berbalang",
"Berserker",
"Biomancer",
"Black Earth cultist",
"Black Pudding",
"Black Viper",
"Black bear",
"Black dragon",
"Black dragon, adult",
"Black dragon, ancient",
"Black dragon, young",
"Black dragon wyrmling",
"Blackguard",
"Blagothkus",
"Blastseeker",
"Blight keepers",
"Blight",
"Blindheim",
"Blink dog",
"Blood hawk",
"Blood hunter",
"Blood witch",
"Blue dragon",
"Blue dragon, adult",
"Blue dragon, ancient",
"Blue dragon, young",
"Blue dragon wyrmling",
"Boar",
"Bodak",
"Boggle",
"Bol'bara",
"Bone knight",
"Bone whelk",
"Boneclaw",
"Borborygmos",
"Brahma Lutier",
"Brain in a jar",
"Brains in iron",
"Brass dragon",
"Brass dragon, adult",
"Brass dragon, ancient",
"Brass dragon, young",
"Brass dragon wyrmling",
"Bridesmaid of Zuggtmoy",
"Brontosaurus",
"Bronze dragon",
"Bronze dragon, adult",
"Bronze dragon, ancient",
"Bronze dragon, young",
"Bronze dragon wyrmling",
"Brown bear",
"Bryn Lightfingers",
"Bugbear",
"Bulette",
"Bullywug",
"Bullywug croaker",
"Bullywug royal",
"Cadaver collector",
"Cambion",
"Camel",
"Captain Othelstan",
"Carlyle",
"Carrion crawler",
"Cat",
"Catoblepas (Theros)",
"Catoblepas",
"Cattle",
"Caustic crawler",
"Cave bear",
"Cave bear cub",
"Cave fisher",
"Centaur mummy",
"Centaur",
"Cerberus",
"Cerodons",
"Chamberlain of Zuggtmoy",
"Champion",
"Changeling",
"Chaos quadrapod",
"Chemister",
"Chimera",
"Chimera, Theran chimera",
"Chitin",
"Choker",
"Chromatic dragons",
"Chupacabra",
"Chuul",
"Chwinga",
"Cinderhild",
"Claugiyliamatar",
"Clawfoot",
"Clay gladiator",
"Clay golem",
"Cloaker",
"Clockwork behir",
"Clockwork dragon",
"Clockwork kraken",
"Clockwork mule",
"Clockworks",
"Clockworks, bronze scout",
"Clockworks, iron cobra",
"Clockworks, oaken bolter",
"Clockworks, stone defender",
"Cloud giant",
"Coatls",
"Cockatrice",
"Cockatrice, undead cockatrice",
"Colossus of Akros",
"Commoner",
"Conclave dryad",
"Conjurer",
"Constrictor snake",
"Copper dragon",
"Copper dragon, adult",
"Copper dragon, ancient",
"Copper dragon, young",
"Copper dragon wyrmling",
"Core spawn",
"Corpse flower",
"Couatl",
"Countess Sansuri",
"Crab folk",
"Crab",
"Crag cat",
"Cranium rats",
"Crawling claw",
"Creepy doll",
"Crocodile",
"Crocodile, two-headed crocodile",
"Crokek'toeck",
"Crushing Wave cultist",
"Cult fanatic",
"Cultist of the Dead Three",
"Cultist",
"Cults of madness",
"Cyclops (Theros)",
"Cyclops",
"Daelkyr",
"Daelkyr, Belashyrra",
"Daelkyr, Dyrrn",
"Damned wretch",
"Darkling",
"Darkmantle",
"Deadbridge goliath beetle",
"Death dog",
"Death knight",
"Deathlock",
"Decapus",
"Decapus, marine decapus",
"Deep crow",
"Deep crow, ancient deep crow",
"Deep scion",
"Deer",
"Deinonychus",
"Demilich",
"Demogorgon",
"Demon cults",
"Demon, Balor",
"Demon, Dretch",
"Demon, Glabrezu",
"Demon, Hezrou",
"Demon, Marilith",
"Demon, Nalfeshnee",
"Demon, Quasit",
"Demon, Vrock",
"Demons",
"Derro",
"Derro, derro savant",
"Devil",
"Devil, Barbed",
"Devil, Bearded",
"Devil, Bone",
"Devil, Chain",
"Devil, Erinyes",
"Devil, Horned",
"Devil, Ice",
"Devil, Imp",
"Devil, Lemure",
"Devil, Pit Fiend",
"Devkarin lich",
"Devourer",
"Dimetrodon",
"Dinosaurs",
"Dire corby",
"Dire wolf",
"Dirt-Under-Nails",
"Displacer beast",
"Diviner",
"Dolgaunt",
"Dolgrim",
"Dolphin",
"Don-Jon Raskin",
"Donaar Blit'zen",
"Doom Raider",
"Doppelganger",
"Dracolich",
"Draegloth",
"Draft horse",
"Dragon Turtle",
"Dragon automaton",
"Dragon rat",
"Dragon turtle",
"Dragon, Black",
"Dragon, Blue",
"Dragon, Brass",
"Dragon, Bronze",
"Dragon, Copper",
"Dragon, Gold",
"Dragon, Green",
"Dragon, Red",
"Dragon, Silver",
"Dragon, White",
"Dragonbait",
"Dragonclaw",
"Dragonfang",
"Dragons",
"Dragonsoul",
"Dragonwing",
"Drake",
"Dralmorrer Borngray",
"Drannin Splithelm",
"Dread warrior",
"Drider",
"Droki",
"Drow elf",
"Drowned ascetic",
"Drowned assassin",
"Drowned blade",
"Drowned master",
"Druid of the Old Ways",
"Druid",
"Dryad",
"Dryads (Ixalan)",
"Duergar",
"Duke Thalamra Vanthampur",
"Durnan",
"Dusk hag",
"Dusthawk",
"Eagle",
"Earth elemental",
"Eblis",
"Eidolon",
"Eigeron",
"Eladrin",
"Elder elemental",
"Eldrazi",
"Elemental myrmidon",
"Elemental, Air",
"Elemental, Earth",
"Elemental, Fire",
"Elemental, Water",
"Elementals",
"Elephant",
"Elf, Drow",
"Elk",
"Empyrean",
"Enchanter",
"Erstwhile",
"Eternal Flame cultist",
"Eternals",
"Ettercap",
"Ettin",
"Evil mage",
"Evoker",
"Eye of fear and flame",
"Ezmerelda d'Avenir",
"Faerie dragon",
"Falcon the Hunter",
"Fastieth",
"Felidar",
"Felidar, winged felidar",
"Fhenimore (kraken priest variant)",
"Fiendish flesh golem",
"Fire elemental",
"Fire giant",
"Firefist",
"Firenewts",
"Firenewts, firenewt warlock of Imix",
"Firenewts, firenewt warrior",
"Flabbergast",
"Flail snail",
"Flame-kin",
"Flameskull",
"Fleecemane lion",
"Flesh golem",
"Floon Blagmaar",
"Flumph",
"Flying Sword",
"Flying monkey",
"Flying snake",
"Fog giant",
"Fomorian",
"Forlarren",
"Frog",
"Froghemoth",
"Frontline medic",
"Frost giant",
"Frost worm",
"Frulam Mondath",
"Fungi",
"Fungi, gas spore",
"Fungi, shrieker",
"Fungi, violet fungus",
"Fungus drudge",
"Galeb duhr",
"Gargoyle",
"Gargoyle, giant four-armed gargoyle",
"Garret Levistusson",
"Gearkeeper construct",
"Geists (Innistrad)",
"Gelatinous Cube",
"Genie",
"Genie, Djinni",
"Genie, Efreeti",
"Geonid",
"Ghald",
"Ghast",
"Ghost",
"Ghoul",
"Giant ape",
"Giant badger",
"Giant bat",
"Giant boar",
"Giant centipede",
"Giant constrictor snake",
"Giant coral snake",
"Giant crab",
"Giant crayfish",
"Giant crocodile",
"Giant eagle",
"Giant elk",
"Giant fire beetle",
"Giant fly",
"Giant frog",
"Giant frog, giant ice frogs",
"Giant goat",
"Giant hyena",
"Giant ice toad",
"Giant lightning eel",
"Giant lizard",
"Giant octopus",
"Giant owl",
"Giant poisonous snake",
"Giant rat",
"Giant rat, diseased giant rats",
"Giant raven",
"Giant scorpion",
"Giant sea eel",
"Giant sea horse",
"Giant shark",
"Giant skeleton",
"Giant snapping turtle",
"Giant spider",
"Giant spider, ice spider",
"Giant spider, ice spider queen",
"Giant strider",
"Giant subterranean lizard",
"Giant toad",
"Giant two-headed rat",
"Giant vulture",
"Giant wasp",
"Giant weasel",
"Giant white moray eel",
"Giant wolf spider",
"Giant",
"Giant, Cloud",
"Giant, Fire",
"Giant, Frost",
"Giant, Hill",
"Giant, Stone",
"Giant, Storm",
"Gibbering Mouther",
"Gibbering mouther",
"Gideon Lightward",
"Giff",
"Girallon",
"Gith",
"Gladiator",
"Glitterman",
"Gloamwing",
"Gloine Nathair-Nathair",
"Gloomhunter bat",
"Gloomstalker",
"Gnoll",
"Gnome cook",
"Gnome toymaker",
"Gnome",
"Gnome, Deep",
"Goat",
"Goblin",
"Gold dragon",
"Gold dragon, adult",
"Gold dragon, ancient",
"Gold dragon, young",
"Gold dragon wyrmling",
"Golem, Clay",
"Golem, Flesh",
"Golem, Iron",
"Golem, Stone",
"Golems",
"Golgari shaman",
"Gomazoa",
"Gorgon",
"Gorthok the Thunder Boar",
"Grand Master",
"Grandfather Oak",
"Grave Robber",
"Gray Ooze",
"Gray render",
"Green dragon",
"Green dragon, adult",
"Green dragon, ancient",
"Green dragon, young",
"Green dragon wyrmling",
"Grell",
"Gremlin (Kaladesh)",
"Grick",
"Grick alpha",
"Griffon Cavalry rider",
"Griffon",
"Grillig",
"Grimlock",
"Grisha",
"Gronk",
"Grumink the Renegade",
"Grung",
"Guard drake",
"Guard",
"Guardian wolf",
"Hadrosaurus",
"Hag, Green",
"Hag, Night",
"Hag, Sea",
"Hags",
"Halaster Blackcloak",
"Half-Red Dragon Veteran",
"Half-dragon",
"Harpy matriarch",
"Harpy",
"Harshnag",
"Havoc orb",
"Hawk (falcon)",
"Heartstabber mosquito",
"Hedron constructs",
"Hell Hound",
"Hell hound",
"Hellions",
"Hellwasp",
"Helmed horror",
"Herbalist",
"Hill giant",
"Hippocamp",
"Hippogriff",
"Hippopotamus",
"Hlam",
"Hobgoblin",
"Hollyphant",
"Homarid",
"Hommet Shaw",
"Homunculus",
"Hook horror",
"Hoplite",
"Horizonback tortoise",
"Horncaller",
"Horned frogs",
"Horrors",
"Horrors, flying horror",
"Horrors, shadow horror",
"Horrors, skittering horror",
"Howler",
"Howling Hatred cultist",
"Hrabbaz",
"Hulking crab",
"Hunter shark",
"Husk zombie bursters",
"Husk zombie",
"Hydra",
"Hyena",
"Ice toad",
"Illusionist",
"Illydia Maethellyn",
"Immured one",
"Indentured spirit",
"Inspired",
"Intellect devourer",
"Invisible Stalker",
"Invisible stalker",
"Iron golem",
"Isperia",
"Ixitxachitl",
"Iymrith the Dragon",
"Izek Strazni",
"Izzet weird",
"Jackal",
"Jackalwere",
"Jaculi",
"Jalester Silvermane",
"Jamna Gleamsilver",
"Jarad Vod Savo",
"Jarhild Stoneforge",
"Jarl Storvald",
"Jarlaxle Baenre",
"Jermlaine",
"Jim Darkmagic",
"K'thriss Drow'b",
"Kaaltar",
"Kalashtar",
"Kalka-Kylla",
"Kamadan",
"Karrnathi undead soldier",
"Kasimir Velikov",
"Kavu predator",
"Kavu",
"Kavu, Steel Leaf kavu",
"Keg robot",
"Kelpie",
"Kenku",
"Khargra",
"Ki-rin",
"Killer whale",
"Killmoulis",
"King of Feathers",
"Klauth",
"Knight",
"Koalinth sergeant",
"Koalinth",
"Kobold",
"Korred",
"Kostchtchie",
"Kraken (Theros)",
"Kraken (Theros), nadir krakens",
"Kraken priest",
"Kraken",
"Kraken, juvenile kraken",
"Kraken, malformed kraken",
"Kraken, young kraken",
"Krakens (Zendikar)",
"Krasis",
"Kraul death priest",
"Kraul warrior",
"Kraul",
"Kraul, winged kraul warrior",
"Krenko",
"Krull",
"Kruthik",
"Kuo-toa archpriest",
"Kuo-toa monitor",
"Kuo-toa whip",
"Kuo-toa",
"Kuo-toa, kuo-toa",
"Kysh (triton)",
"Lady Illmarrow",
"Laeral Silverhand",
"Lamia (Theros)",
"Lamia",
"Langdedrosa Cyanwrath",
"Larethar Gulgrin",
"Larva",
"Lava child",
"Lawmage",
"Lazav",
"Leonin iconoclast",
"Leonin",
"Leucrotta",
"Liara Portyr",
"Lich",
"Liches (Innistrad)",
"Lion",
"Living iron statue",
"Living spell",
"Lizard",
"Lizardfolk commoner",
"Lizardfolk render",
"Lizardfolk scaleshield",
"Lizardfolk shaman",
"Lizardfolk subchief",
"Lizardfolk",
"Lizardfolk, lizard king/queen",
"Loading rig",
"Locathah hunter",
"Locathah",
"Lord Kallinor",
"Lord of Blades",
"Lycanthrope",
"Lycanthropickle",
"Lynx Creatlach",
"Maaka",
"Macaws",
"Madam Eva",
"Maegera the Dawn Titan",
"Mage",
"Magewright",
"Magical tome",
"Magmin",
"Mahadi the Rakshasa",
"Mammoth",
"Manshoon simulacrum",
"Manshoon",
"Manticore",
"Manticore, heart-piercer manticore",
"Mantrap",
"Manufacturing arm",
"Martial arts adept",
"Marut",
"Mary Greymalkin",
"Master thief",
"Mastiff",
"Maw of Sekolah",
"Meazel",
"Mechachimera",
"Medusa (Theros)",
"Medusa",
"Meenlock",
"Meeseeks",
"Meloon Wardragon",
"Mephit",
"Mephit, Dust",
"Mephit, Ice",
"Mephit, Magma",
"Mephit, Steam",
"Merfolk (Ravnica)",
"Merfolk scavenger",
"Merfolk",
"Merrow shallowpriest",
"Merrow",
"Metallic dragon",
"Mimic",
"Mimic, large mimic",
"Mind flayer",
"Mind mage",
"Mindwitness",
"Miniature giant space hamster",
"Minion",
"Minotaur living crystal statue",
"Minotaur",
"Mirt",
"Mite",
"Modron",
"Moghadam",
"Molvano",
"Mongrelfolk",
"Moorbounder",
"Mordakhesh",
"Morkoth",
"Mormesk the Wraith",
"Mortlock Vanthampur",
"Mossback Steward",
"Mr. Dory",
"Muiral",
"Mule",
"Mummies",
"Mummies, mummy lord",
"Mummies, mummy",
"Mummy (Amonkhet)",
"Mummy Lord",
"Mummy lord (Amonkhet)",
"Mummy",
"Mwaxanaré",
"Myconids",
"Mythic monsters",
"Môrgæn",
"Naergoth Bladelord",
"Naga, Guardian",
"Naga, Spirit",
"Nagas",
"Nagas, bone naga",
"Nagas, guardian naga",
"Nagas, spirit naga",
"Nagpa",
"Nar'l Xibrindas",
"Narrak",
"Nature elemental, huge nature elemental",
"Nature elemental, small nature elemental",
"Necro-alchemists",
"Necromancer",
"Needlefolk",
"Neogi hatchling",
"Neogi master",
"Neogi",
"Neogi, neogi",
"Neothelid",
"Nereid",
"Nergaliid (devil toad)",
"Neronvain",
"Nezznar the Black Spider",
"Nicholas's sleigh reindeer",
"Night hag (Theros)",
"Nightmare",
"Nightshade (Skullport)",
"Nightveil specter",
"Nightwalker",
"Nihiloor",
"Nilbog",
"Nimblewright",
"Nine-Fingers Keene",
"Niv-Mizzet",
"Nivix cyclops",
"Noble",
"Norker war leader",
"Norker",
"Noska Ur'gray",
"Nothic",
"Nymphs (Theros)",
"Nyx-fleece ram",
"Nyxborn lynx",
"Nyxborn",
"Oak Truestrike",
"Oblex",
"Obzedat ghost",
"Oceanus (sea elf)",
"Ochre Jelly",
"Octopus",
"Ogre Zombie",
"Ogre",
"Omin Dran",
"Oni",
"Ooze Master",
"Ooze",
"Ooze-folk",
"Oracle",
"Orc",
"Oreioth",
"Orok",
"Orond Gralhund",
"Orzhov spirit",
"Osvaldo Cassalanter",
"Ott Steeltoes",
"Otyugh",
"Otyugh, neo-otyugh",
"Overlords",
"Overlords, Rak Tulkhesh",
"Overlords, Sul Khatesh",
"Owl",
"Owlbear",
"Owlbear, two-headed owlbear",
"Pack beast",
"Panther",
"Parrots",
"Pegasus",
"Pendragon Beestinger",
"Peryton",
"Peryton, monstrous peryton",
"Phantom warrior",
"Pharblex Spattergoo",
"Phase spider",
"Phoenix Anvil",
"Phylaskia",
"Pidlwick II",
"Piercer",
"Pig",
"Piranha beetles",
"Piranhas",
"Pirate bosun",
"Pirate captain",
"Pirate deck wizard",
"Pirate first mate",
"Pirate",
"Pixelated guards",
"Pixelated",
"Pixie",
"Plesiosaurus",
"Poisonous snake",
"Polar bear",
"Pony",
"Portentia Dran",
"Precognitive mage",
"Priest",
"Princes of Elemental Evil",
"Pseudodragon",
"Pseudodragon familiar",
"Pterafolk",
"Pteranodon",
"Pudding King",
"Purple Worm",
"Purple worm",
"Purple wormling",
"Quaggoth thonot",
"Quaggoth",
"Quetzalcoatlus",
"Quickling",
"Quipper",
"Quori",
"Radiant idol",
"Ragebeast",
"Rahadin",
"Rakdos lampooner",
"Rakdos performer",
"Rakdos",
"Rakshasa",
"Rakshasa, zakya rakshasa",
"Ras Nsi",
"Rat",
"Ratchet faerie",
"Rath Modar",
"Raven",
"Reckoner",
"Red dragon",
"Red dragon, adult",
"Red dragon, ancient",
"Red dragon, young",
"Red dragon wyrmling",
"Red ogre automaton",
"Redbrand ruffian",
"Redcap",
"Redcap, madcaps",
"Reef shark",
"Remallia Haventree",
"Remorhaz",
"Remorhazes",
"Remorhazes, remorhaz",
"Remorhazes, young remorhaz",
"Renaer Neverember",
"Replica modrons",
"Retriever",
"Returned drifter",
"Returned kakomantis",
"Returned palamnite",
"Returned sentry",
"Returned",
"Revenant",
"Rezmir",
"Rhinoceros",
"Rictavio",
"Riding horse",
"Rilsa Rael",
"Rip Tide priest",
"River serpents",
"Roc",
"Roper",
"Rosie Beestinger",
"Rotter",
"Rubblebelt stalker",
"Rug of Smothering",
"Rust Monster",
"Rust monster",
"Saber-toothed tiger",
"Saeth Cromley",
"Sahuagin baron",
"Sahuagin blademaster",
"Sahuagin champion",
"Sahuagin coral smasher",
"Sahuagin deep diver",
"Sahuagin hatchling swarm",
"Sahuagin high priestess",
"Sahuagin priestess",
"Sahuagin warlock of Uk'otoa",
"Sahuagin wave shaper",
"Sahuagin",
"Sailor boss",
"Sailors",
"Salamander",
"Sanbalet",
"Sandwurm",
"Satyr",
"Scaladar",
"Scarecrow",
"Scorchbringer guard",
"Scorpion",
"Scout",
"Screaming devilkin",
"Scribe",
"Sea elf",
"Sea fury",
"Sea horse",
"Sea lion",
"Sea lion (monstrosity)",
"Sea spawn",
"Serpopard",
"Serra angels",
"Severin",
"Shadar-kai",
"Shades (Zendikar)",
"Shadow assassin",
"Shadow dragon",
"Shadow mastiff",
"Shadow mastiff alpha",
"Shadow",
"Shadowghast",
"Shadowy duplicate",
"Shambling Mound",
"Shambling mound",
"Shark hunters",
"Sharkbody abominations",
"Sharwyn Hucrele",
"Sheep",
"Shell shark",
"Shield Guardian",
"Shield guardian",
"Shifter",
"Shoal serpent",
"Shoalar Quaderil",
"Shrieker",
"Sildar Hallwinter",
"Silver dragon",
"Silver dragon, adult",
"Silver dragon, ancient",
"Silver dragon, young",
"Silver dragon wyrmling",
"Simic hybrid",
"Sir Braford",
"Sir Ursas",
"Siren",
"Skaabs",
"Skaberen",
"Skein spider",
"Skeletal alchemist",
"Skeletal horse",
"Skeletal juggernaut",
"Skeletal swarm",
"Skeleton key",