-
Notifications
You must be signed in to change notification settings - Fork 3
/
normalize-names.mjs
1632 lines (1622 loc) · 60.5 KB
/
normalize-names.mjs
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
import fs from 'node:fs/promises';
// Map from killStatsName => prettyName.
const normalizedToPrettyNames = new Map([
// Bosses and boss-like creatures.
['A Greedy Eye', 'A Greedy Eye'],
['A Shielded Astral Glyph', 'A Shielded Astral Glyph'],
['Abyssador', 'Abyssador'],
['Achad', 'Achad'],
['Aftershock', 'Aftershock'],
['Ahau', 'Ahau'],
['Alptramun', 'Alptramun'],
['Amenef the Burning', 'Amenef the Burning'],
['An Astral Glyph', 'An Astral Glyph'],
['An Observer Eye', 'An Observer Eye'],
['Ancient Spawn Of Morgathla', 'Ancient Spawn of Morgathla'],
['Anmothra', 'Anmothra'],
['Annihilon', 'Annihilon'],
['Anomaly', 'Anomaly'],
['Apprentice Sheng', 'Apprentice Sheng'],
['Arachir the Ancient One', 'Arachir the Ancient One'],
['Arbaziloth', 'Arbaziloth'],
['Armenius', 'Armenius'],
['Arthei', 'Arthei'],
['Arthom The Hunter', 'Arthom the Hunter'],
['Ascending Ferumbras', 'Ascending Ferumbras'],
['Ashmunrah', 'Ashmunrah'],
['Atab', 'Atab'],
['Avalanche', 'Avalanche'],
['Axeitus Headbanger', 'Axeitus Headbanger'],
['Ayana the Crimson Curse', 'Ayana the Crimson Curse'],
['Azerus', 'Azerus'],
['Bakragore', 'Bakragore'],
['Bane Lord', 'Bane Lord'],
['Barbaria', 'Barbaria'],
['Baron Brute', 'Baron Brute'],
['Battlemaster Zunzu', 'Battlemaster Zunzu'],
['Bibby Bloodbath', 'Bibby Bloodbath'],
['Big Boss Trolliver', 'Big Boss Trolliver'],
['Black Knight', 'Black Knight'],
['Black Vixen', 'Black Vixen'],
['Bloodback', 'Bloodback'],
['Bloodjaws', 'bloodjaw'], // This is more like a creature than a boss.
['Bloodpaw', 'Bloodpaw'],
['Bone Capsule', 'Bone Capsule'],
['Boogey', 'Boogey'],
['Boreth', 'Boreth'],
['Bovinus', 'Bovinus'],
['Bragrumol', 'Bragrumol'],
['Brain Head', 'Brain Head'],
['Bretzecutioner', 'Bretzecutioner'],
['Brokul', 'Brokul'],
['Brother Chill', 'Brother Chill'],
['Brother Freeze', 'Brother Freeze'],
['Brother Worm', 'Brother Worm'],
['Bruise Payne', 'Bruise Payne'],
['Bruton', 'Bruton'],
['Brutus Bloodbeard', 'Brutus Bloodbeard'],
['Bullwark', 'Bullwark'],
['Burster', 'Burster'],
['Captain Jones', 'Captain Jones'],
['Cave Spider', 'Cave Spider'],
['Chagorz', 'Chagorz'],
['Channeling Earl Osam', 'Channeling Earl Osam'],
['Charged Anomaly', 'Charged Anomaly'],
['Chikhaton', 'Chikhaton'],
['Chizzoron the Distorter', 'Chizzoron the Distorter'],
['Chopper', 'Chopper'],
['Coldheart', 'Coldheart'],
['Colerian the Barbarian', 'Colerian the Barbarian'],
['Count Vlarkorth', 'Count Vlarkorth'],
['Countess Sorrow', 'Countess Sorrow'],
['Crultor', 'Crultor'],
['Cublarc the Plunderer', 'Cublarc the Plunderer'],
['Cursed Gladiator', 'Cursed Gladiator'],
['Custodian', 'Custodian'],
['Damage Resonance', 'Damage Resonance'],
['Darakan the Executioner', 'Darakan the Executioner'],
['Darkfang', 'Darkfang'],
['Dazed Leaf Golem', 'Dazed Leaf Golem'],
['Deadeye Devious', 'Deadeye Devious'],
['Death Priest Shargon', 'Death Priest Shargon'],
['Deathbine', 'Deathbine'],
['Deathbringer', 'Deathbringer'],
['Deathstrike', 'Deathstrike'],
['Deep Terror', 'Deep Terror'],
['Demodras', 'Demodras'],
['Despair', 'Despair'],
['Despor', 'Despor'],
['Destabilized Ferumbras', 'Destabilized Ferumbras'],
['Devovorga', 'Devovorga'],
['Dharalion', 'Dharalion'],
['Diblis the Fair', 'Diblis the Fair'],
['Dipthrah', 'Dipthrah'],
['Dirtbeard', 'Dirtbeard'],
['Diseased Bill', 'Diseased Bill'],
['Diseased Dan', 'Diseased Dan'],
['Diseased Fred', 'Diseased Fred'],
['Doctor Perhaps', 'Doctor Perhaps'],
['Doomhowl', 'Doomhowl'],
['Dorokoll The Mystic', 'Dorokoll the Mystic'],
['Dracola', 'Dracola'],
['Dragon Essences', 'Dragon Essence'],
['Dragon Pack', 'Dragon Pack'],
['Dragon Wardens', 'Dragon Warden'],
['Dragonking Zyrtarch', 'Dragonking Zyrtarch'],
['Drasilla', 'Drasilla'],
['Dreadful Disruptor', 'Dreadful Disruptor'],
['Dreadmaw', 'Dreadmaw'],
['Dreadwing', 'Dreadwing'],
['Drume', 'Drume'],
['Duke Krule', 'Duke Krule'],
['Earl Osam', 'Earl Osam'],
['Earth Overlord', 'Earth Overlord'],
['Ekatrix', 'Ekatrix'],
['Elder Bloodjaws', 'elder bloodjaw'], // This is more like a creature than a boss.
['Eliz The Unyielding', 'Eliz the Unyielding'],
['Elvira Hammerthrust', 'Elvira Hammerthrust'],
['Energy Overlord', 'Energy Overlord'],
['Enusat the Onyx Wing', 'Enusat the Onyx Wing'],
['Eradicator', 'Eradicator'],
['Eshtaba The Conjurer', 'Eshtaba the Conjurer'],
['Esmeralda', 'Esmeralda'],
['Essence Of Malice', 'Essence of Malice'],
['Ethershreck', 'Ethershreck'],
['Evil Mastermind', 'Evil Mastermind'],
['Faceless Bane', 'Faceless Bane'],
['Fahim the Wise', 'Fahim the Wise'],
['Fallen Challengers', 'Fallen Challenger'],
['Fallen Mooh\'Tah Master Ghar', 'Fallen Mooh\'Tah Master Ghar'],
['Fatality', 'Fatality'],
['Fazzrah', 'Fazzrah'],
['Fernfang', 'Fernfang'],
['Feroxa', 'Feroxa'],
['Ferumbras Mortal Shell', 'Ferumbras Mortal Shell'],
['Ferumbras Soul Splinter', 'Ferumbras Soul Splinter'],
['Ferumbras', 'Ferumbras'],
['Fire Overlord', 'Fire Overlord'],
['Flameborn', 'Flameborn'],
['Flamecaller Zazrak', 'Flamecaller Zazrak'],
['Fleabringer', 'Fleabringer'],
['Fleshcrawler', 'Fleshcrawler'],
['Fleshslicer', 'Fleshslicer'],
['Foreman Kneebiter', 'Foreman Kneebiter'],
['Foreshock', 'Foreshock'],
['Frenzy', 'Frenzy'],
['Frostfur', 'Frostfur'],
['Fugue', 'Fugue'],
['Furious Scorpion', 'Furious Scorpion'],
['Fury of the Emperor', 'Fury of the Emperor'],
['Furyosa', 'Furyosa'],
['Gaffir', 'Gaffir'],
['Gaz\'haragoth', 'Gaz\'haragoth'],
['Gelidrazah the Frozen', 'Gelidrazah the Frozen'],
['General Murius', 'General Murius'],
['Ghazbaran', 'Ghazbaran'],
['Ghulosh', 'Ghulosh'],
['Ghulosh\' Deathgaze', 'Ghulosh\' Deathgaze'],
['Glitterscale', 'Glitterscale'],
['Glooth Fairy', 'Glooth Fairy'],
['Gnomevil', 'Gnomevil'],
['Gnorre Chyllson', 'Gnorre Chyllson'],
['Golgordan', 'Golgordan'],
['Gorga', 'Gorga'],
['Gorgo', 'Gorgo'],
['Gorzindel', 'Gorzindel'],
['Goshnar\'s Cruelty', 'Goshnar\'s Cruelty'],
['Goshnar\'s Greed', 'Goshnar\'s Greed'],
['Goshnar\'s Hatred', 'Goshnar\'s Hatred'],
['Goshnar\'s Malice', 'Goshnar\'s Malice'],
['Goshnar\'s Megalomania', 'Goshnar\'s Megalomania'],
['Goshnar\'s Spite', 'Goshnar\'s Spite'],
['Gralvalon', 'Gralvalon'],
['Grand Canon Dominus', 'Grand Canon Dominus'],
['Grand Chaplain Gaunder', 'Grand Chaplain Gaunder'],
['Grand Commander Soeren', 'Grand Commander Soeren'],
['Grand Master Oberon', 'Grand Master Oberon'],
['Grand Mother Foulscale', 'Grand Mother Foulscale'],
['Grandfather Tridian', 'Grandfather Tridian'],
['Gravelord Oshuran', 'Gravelord Oshuran'],
['Greed', 'Greed'],
['Greedok', 'Greedok'],
['Grimgor Guteater', 'Grimgor Guteater'],
['Groam', 'Groam'],
['Grorlam', 'Grorlam'],
['Guard Captain Quaid', 'Guard Captain Quaid'],
['Guilt', 'Guilt'],
['Hairman the Huge', 'Hairman the Huge'],
['Hatebreeder', 'Hatebreeder'],
['Haunter', 'Haunter'],
['Hellgorak', 'Hellgorak'],
['Hemming', 'Hemming'],
['Heoni', 'Heoni'],
['Hide', 'Hide'],
['High Templar Cobrass', 'High Templar Cobrass'],
['Hirintror', 'Hirintror'],
['Horadron', 'Horadron'],
['Horestis', 'Horestis'],
['Ice Overlord', 'Ice Overlord'],
['Ichgahal', 'Ichgahal'],
['Incineron', 'Incineron'],
['Incredibly Old Witch', 'Incredibly Old Witch'],
['Inky', 'Inky'],
['Irahsae', 'Irahsae'],
['Irgix the Flimsy', 'Irgix the Flimsy'],
['Izcandar Champion of Summer', 'Izcandar Champion of Summer'],
['Izcandar Champion of Winter', 'Izcandar Champion of Winter'],
['Izcandar the Banished', 'Izcandar the Banished'],
['Jailer', 'Jailer'],
['Jaul', 'Jaul'],
['Jesse the Wicked', 'Jesse the Wicked'],
['Kalyassa', 'Kalyassa'],
['Katex Blood Tongue', 'Katex Blood Tongue'],
['Kerberos', 'Kerberos'],
['Kesar', 'Kesar'],
['King Zelos', 'King Zelos'],
['Koshei the Deathless', 'Koshei the Deathless'],
['Kraknaknork', 'Kraknaknork'],
['Kraknaknork\'s Demon', 'Kraknaknork\'s Demon'],
['Kreebosh the Exile', 'Kreebosh the Exile'],
['Kroazur', 'Kroazur'],
['Kusuma', 'Kusuma'],
['Lady Tenebris', 'Lady Tenebris'],
['Last Planegazer', 'Last Planegazer'],
['Latrivan', 'Latrivan'],
['Leiden', 'Leiden'],
['Lersatio', 'Lersatio'],
['Lethal Lissy', 'Lethal Lissy'],
['Leviathan', 'Leviathan'],
['Lisa', 'Lisa'],
['Lizard Abomination', 'Lizard Abomination'],
['Lizard Gate Guardian', 'Lizard Gate Guardian'],
['Lloyd', 'Lloyd'],
['Lokathmor', 'Lokathmor'],
['Lord Azaram', 'Lord Azaram'],
['Lord of the Elements', 'Lord of the Elements'],
['Mad Mage', 'Mad Mage'],
['Mad Technomancer', 'Mad Technomancer'],
['Madareth', 'Madareth'],
['Magma Bubble', 'Magma Bubble'],
['Mahatheb', 'Mahatheb'],
['Mahrdis', 'Mahrdis'],
['Maliz', 'Maliz'],
['Malkhar Deathbringer', 'Malkhar Deathbringer'],
['Malofur Mangrinder', 'Malofur Mangrinder'],
['Malvaroth', 'Malvaroth'],
['Mamma Longlegs', 'Mamma Longlegs'],
['Man in the Cave', 'Man in the Cave'],
['Marziel', 'Marziel'],
['Massacre', 'Massacre'],
['Maw', 'Maw'],
['Mawhawk', 'Mawhawk'],
['Maxxenius', 'Maxxenius'],
['Mazoran', 'Mazoran'],
['Mazzinor', 'Mazzinor'],
['Megasylvan Yselda', 'Megasylvan Yselda'],
['Melting Frozen Horror', 'Melting Frozen Horror'],
['Menace', 'Menace'],
['Mephiles', 'Mephiles'],
['Merikh the Slaughterer', 'Merikh the Slaughterer'],
['Mezlon The Defiler', 'Mezlon the Defiler'],
['Mindmasher', 'Mindmasher'],
['Mitmah Vanguard', 'Mitmah Vanguard'],
['Monstor', 'Monstor'],
['Mooh\'Tah Master', 'Mooh\'Tah Master'],
['Morgaroth', 'Morgaroth'],
['Morguthis', 'Morguthis'],
['Morik the Gladiator', 'Morik the Gladiator'],
['Mornenion', 'Mornenion'],
['Morshabaal', 'Morshabaal'],
['Mozradek', 'Mozradek'],
['Mr. Punish', 'Mr. Punish'],
['Munster', 'Munster'],
['Murcion', 'Murcion'],
['Mutated Zalamon', 'Mutated Zalamon'],
['Necropharus', 'Necropharus'],
['Neferi the Spy', 'Neferi the Spy'],
['Norgle Glacierbeard', 'Norgle Glacierbeard'],
['Obujos', 'Obujos'],
['Ocyakao', 'Ocyakao'],
['Omrafir', 'Omrafir'],
['Omruc', 'Omruc'],
['Oodok Witchmaster', 'Oodok Witchmaster'],
['Orcus the Cruel', 'Orcus the Cruel'],
['Orshabaal', 'Orshabaal'],
['Outburst', 'Outburst'],
['Owin', 'Owin'],
['Paiz the Pauperizer', 'Paiz the Pauperizer'],
['Phrodomo', 'Phrodomo'],
['Plagirath', 'Plagirath'],
['Plagueroot', 'Plagueroot'],
['Planestrider', 'Planestrider'],
['Preceptor Lazare', 'Preceptor Lazare'],
['Prince Drazzak', 'Prince Drazzak'],
['Professor Maxxen', 'Professor Maxxen'],
['Pythius the Rotten', 'Pythius the Rotten'],
['Rage of Mazoran', 'Rage of Mazoran'],
['Ragiaz', 'Ragiaz'],
['Raging Mage', 'Raging Mage'],
['Rahemos', 'Rahemos'],
['Ratmiral Blackwhiskers', 'Ratmiral Blackwhiskers'],
['Ravenous Hunger', 'Ravenous Hunger'],
['Raxias', 'Raxias'],
['Razzagorn', 'Razzagorn'],
['Realityquake', 'Realityquake'],
['Renegade Orc', 'Renegade Orc'],
['Ribstride', 'Ribstride'],
['Robby the Reckless', 'Robby the Reckless'],
['Rocko', 'Rocko'],
['Rocky', 'Rocky'],
['Ron the Ripper', 'Ron the Ripper'],
['Rotspit', 'Rotspit'],
['Rottie the Rotworm', 'Rottie the Rotworm'],
['Rotworm Queen', 'Rotworm Queen'],
['Rukor Zad', 'Rukor Zad'],
['Rupture', 'Rupture'],
['Scarlett Etzel', 'Scarlett Etzel'],
['Scorn of the Emperor', 'Scorn of the Emperor'],
['Shadow of Boreth', 'Shadow of Boreth'],
['Shadow of Lersatio', 'Shadow of Lersatio'],
['Shadow of Marziel', 'Shadow of Marziel'],
['Shadowpelt', 'Shadowpelt'],
['Shadowstalker', 'Shadowstalker'],
['Shard of Corruption', 'Shard of Corruption'],
['Shardhead', 'Shardhead'],
['Sharpclaw', 'Sharpclaw'],
['Sharptooth', 'Sharptooth'],
['Shlorg', 'Shlorg'],
['Shulgrax', 'Shulgrax'],
['Sin Devourers', 'Sin Devourers'],
['Sir Baeloc', 'Sir Baeloc'],
['Sir Nictros', 'Sir Nictros'],
['Sir Valorcrest', 'Sir Valorcrest'],
['Sister Hetai', 'Sister Hetai'],
['Slim', 'Slim'],
['Smuggler Baron Silvertoe', 'Smuggler Baron Silvertoe'],
['Snake Thing', 'Snake Thing'],
['Solid Frozen Horror', 'Solid Frozen Horror'],
['Soul Cages', 'Soul Cages'],
['Soul of Dragonking Zyrtarch', 'Soul of Dragonking Zyrtarch'],
['spawns of the welter', 'Spawn of the Welter'],
['Spirit of Earth', 'Spirits of Earth'],
['Spirit of Fire', 'Spirits of Fire'],
['Spirit of Water', 'Spirits of Water'],
['Spite of the Emperor', 'Spite of the Emperor'],
['Splasher', 'Splasher'],
['Srezz Yellow Eyes', 'Srezz Yellow Eyes'],
['Stonecracker', 'Stonecracker'],
['Sugar Daddy', 'Sugar Daddy'],
['Sugar Mommy', 'Sugar Mommy'],
['Sulphur Scuttler', 'Sulphur Scuttler'],
['Supercharged Mazzinor', 'Supercharged Mazzinor'],
['Svoren the Mad', 'Svoren the Mad'],
['Tamru the Black', 'Tamru the Black'],
['Tanjis', 'Tanjis'],
['Tarbaz', 'Tarbaz'],
['Tazhadur', 'Tazhadur'],
['Teleskor', 'Teleskor'],
['Teneshpar', 'Teneshpar'],
['tentacle of the Deep Terror', 'Tentacle of the Deep Terror'],
['Tentugly', 'Tentugly'],
['Terofar', 'Terofar'],
['Thaian', 'Thaian'],
['Thalas', 'Thalas'],
['Thawing Dragon Lord', 'Thawing Dragon Lord'],
['The Abomination', 'The Abomination'],
['The Armored Voidborn', 'The Armored Voidborn'],
['The Astral Source', 'The Astral Source'],
['The Axeorcist', 'The Axeorcist'],
['The Baron From Below', 'The Baron From Below'],
['The Big Bad One', 'The Big Bad One'],
['The Blazing Rose', 'The Blazing Rose'],
['The Blightfather', 'The Blightfather'],
['The Bloodtusk', 'The Bloodtusk'],
['The Bloodweb', 'The Bloodweb'],
['The Brainstealer', 'The Brainstealer'],
['The Collector', 'The Collector'],
['The Corruptor Of Souls', 'The Corruptor of Souls'],
['The Count Of The Core', 'The Count of the Core'],
['The Count', 'The Count'],
['The Dark Dancer', 'The Dark Dancer'],
['The Destruction', 'The Destruction'],
['The Diamond Blossom', 'The Diamond Blossom'],
['The Distorted Astral Source', 'The Distorted Astral Source'],
['The Dread Maiden', 'The Dread Maiden'],
['The Dreadorian', 'The Dreadorian'],
['The Duke Of The Depths', 'The Duke of the Depths'],
['The End Of Days', 'The End of Days'],
['The Enraged Thorn Knight', 'The Enraged Thorn Knight'],
['The Evil Eye', 'The Evil Eye'],
['The False God', 'The False God'],
['The Fear Feaster', 'The Fear Feaster'],
['The Fire Empowered Duke', 'The Fire Empowered Duke'],
['The First Dragon', 'The First Dragon'],
['The Flaming Orchid', 'The Flaming Orchid'],
['The Forgemaster', 'The Forgemaster'],
['The Frog Prince', 'The Frog Prince'],
['The Hag', 'The Hag'],
['The Hairy One', 'The Hairy One'],
['The Handmaiden', 'The Handmaiden'],
['The Horned Fox', 'The Horned Fox'],
['The Hunger', 'The Hunger'],
['The Hungerer', 'The Hungerer'],
['The Hungry Baron From Below', 'The Hungry Baron From Below'],
['The Imperor', 'The Imperor'],
['The Keeper', 'The Keeper'],
['The Last Lore Keeper', 'The Last Lore Keeper'],
['The Lily of Night', 'The Lily of Night'],
['The Lord of the Lice', 'The Lord of the Lice'],
['The Manhunter', 'The Manhunter'],
['The Many', 'The Many'],
['The Masked Marauder', 'The Masked Marauder'],
['The Mean Masher', 'The Mean Masher'],
['The Mega Magmaoid', 'The Mega Magmaoid'],
['The Monster', 'The Monster'],
['The Moonlight Aster', 'The Moonlight Aster'],
['The Mutated Pumpkin', 'The Mutated Pumpkin'],
['The Nightmare Beast', 'The Nightmare Beast'],
['The Noxious Spawn', 'The Noxious Spawn'],
['The Obliverator', 'The Obliverator'],
['The Old Whopper', 'The Old Whopper'],
['The Old Widow', 'The Old Widow'],
['The Pale Count', 'The Pale Count'],
['The Pale Worm', 'The Pale Worm'],
['The Pit Lord', 'The Pit Lord'],
['The Plasmother', 'The Plasmother'],
['The Primal Menace', 'The Primal Menace'],
['The Rage', 'The Rage'],
['The Ravager', 'The Ravager'],
['The Remorseless Corruptor', 'The Remorseless Corruptor'],
['The Rootkraken', 'The Rootkraken'],
['The Sandking', 'The Sandking'],
['The Scourge Of Oblivion', 'The Scourge of Oblivion'],
['The Shatterer', 'The Shatterer'],
['The Sinister Hermit', 'The Sinister Hermit'],
['The Snapper', 'The Snapper'],
['The Souldespoiler', 'The Souldespoiler'],
['The Source Of Corruption', 'The Source of Corruption'],
['The Spellstealer', 'The Spellstealer'],
['The Time Guardian', 'The Time Guardian'],
['The Unarmored Voidborn', 'The Unarmored Voidborn'],
['The Unwelcome', 'The Unwelcome'],
['The Voice Of Ruin', 'The Voice of Ruin'],
['The Weakened Count', 'The Weakened Count'],
['The Welter', 'The Welter'],
['The Winter Bloom', 'The Winter Bloom'],
['Thul', 'Thul'],
['Timira the Many-Headed', 'Timira the Many-Headed'],
['Tiquandas Revenge', 'Tiquandas Revenge'],
['Tirecz', 'Tirecz'],
['Tormentor', 'Tormentor'],
['Tremorak', 'Tremorak'],
['Trollwut', 'Trollwut'],
['Tromphonyte', 'Tromphonyte'],
['Twisterror', 'Twisterror'],
['Tyrn', 'Tyrn'],
['Tzumrah The Dazzler', 'Tzumrah the Dazzler'],
['Unaz the Mean', 'Unaz the Mean'],
['Ungreez', 'Ungreez'],
['Urmahlullu the Immaculate', 'Urmahlullu the Immaculate'],
['Urmahlullu the Tamed', 'Urmahlullu the Tamed'],
['Urmahlullu the Weakened', 'Urmahlullu the Weakened'],
['Ushuriel', 'Ushuriel'],
['Utua Stone Sting', 'Utua Stone Sting'],
['Vashresamun', 'Vashresamun'],
['Vemiath', 'Vemiath'],
['Vengar', 'Vengar'],
['Versperoth', 'Versperoth'],
['Vilear', 'Vilear'],
['Vok the Freakish', 'Vok the Freakish'],
['Warlord Ruzad', 'Warlord Ruzad'],
['Webster', 'Webster'],
['White Pale', 'White Pale'],
['Wildness of Urmahlullu', 'Wildness of Urmahlullu'],
['Willi Wasp', 'Willi Wasp'],
['Wisdom of Urmahlullu', 'Wisdom of Urmahlullu'],
['World Devourer', 'World Devourer'],
['Wrath of the Emperor', 'Wrath of the Emperor'],
['Xenia', 'Xenia'],
['Xogixath', 'Xogixath'],
['Yaga the Crone', 'Yaga the Crone'],
['Yakchal', 'Yakchal'],
['Yalaharis', 'Yalaharis'],
['Yirkas Blue Scales', 'Yirkas Blue Scales'],
['Zamulosh', 'Zamulosh'],
['Zanakeph', 'Zanakeph'],
['Zarabustor', 'Zarabustor'],
['Zarcorix Of Yalahar', 'Zarcorix of Yalahar'],
['Zavarash', 'Zavarash'],
['Zevelon Duskbringer', 'Zevelon Duskbringer'],
['Zomba', 'Zomba'],
['Zorvorax', 'Zorvorax'],
['Zugurosh', 'Zugurosh'],
['Zulazza the Corruptor', 'Zulazza the Corruptor'],
['Zushuka', 'Zushuka'],
// Creatures.
['(elemental forces)', '(elemental force)'],
['abyssal calamaries', 'abyssal calamary'],
['acid blobs', 'acid blob'],
['acolytes of darkness', 'acolyte of darkness'],
['acolytes of the cult', 'acolyte of the cult'],
['adepts of the cult', 'adept of the cult'],
['adult goannas', 'adult goanna'],
['adventurers', 'adventurer'],
['afflicted striders', 'afflicted strider'],
['aggressive chickens', 'aggressive chicken'],
['agrestic chickens', 'agrestic chicken'],
['albino dragons', 'albino dragon'],
['amazons', 'amazon'],
['ancient lion knights', 'ancient lion knight'],
['ancient scarabs', 'ancient scarab'],
['ancient ugly monsters', 'ancient ugly monster'],
['angry adventurers', 'angry adventurer'],
['angry demons', 'angry demon'],
['angry plants', 'angry plant'],
['angry sugar fairies', 'angry sugar fairy'],
['animated clomps', 'animated clomp'],
['animated cyclopes', 'animated cyclops'],
['animated feathers', 'animated feather'],
['animated guzzlemaws', 'animated guzzlemaw'],
['animated moohtants', 'animated moohtant'],
['animated mummies', 'animated mummy'],
['animated ogre brutes', 'animated ogre brute'],
['animated ogre savages', 'animated ogre savage'],
['animated ogre shamans', 'animated ogre shaman'],
['animated rotworms', 'animated rotworm'],
['animated skunks', 'animated skunk'],
['animated snowmen', 'animated snowman'],
['animated swords', 'animated sword'],
['arachnophobicas', 'arachnophobica'],
['arctic fauns', 'arctic faun'],
['armadiles', 'armadile'],
['askarak demons', 'askarak demon'],
['askarak lords', 'askarak lord'],
['askarak princes', 'askarak prince'],
['assassins', 'assassin'],
['azure frogs', 'azure frog'],
['badgers', 'badger'],
['baleful bunnies', 'baleful bunny'],
['bandits', 'bandit'],
['bane bringers', 'bane bringer'],
['banes of light', 'bane of light'],
['banshees', 'banshee'],
['barbarian bloodwalkers', 'barbarian bloodwalker'],
['barbarian brutetamers', 'barbarian brutetamer'],
['barbarian headsplitters', 'barbarian headsplitter'],
['barbarian skullhunters', 'barbarian skullhunter'],
['barkless devotees', 'barkless devotee'],
['barkless fanatics', 'barkless fanatic'],
['bashmus', 'bashmu'],
['bats', 'bat'],
['bears', 'bear'],
['behemoths', 'behemoth'],
['bellicose orgers', 'bellicose orger'],
['berrypests', 'berrypest'],
['berserker chickens', 'berserker chicken'],
['betrayed wraiths', 'betrayed wraith'],
['biting books', 'biting book'],
['black cobras', 'black cobra'],
['black sheep', 'black sheep'],
['black sphinx acolytes', 'black sphinx acolyte'],
['blazing fire elementals', 'blazing fire elemental'],
['blemished spawns', 'blemished spawn'],
['blight bugs', 'blight bug'],
['blightlings', 'blightling'],
['blightwalkers', 'blightwalker'],
['blistering fire elementals', 'blistering fire elemental'],
['bloated man-maggots', 'bloated man-maggot'],
['blood beasts', 'blood beast'],
['blood crabs', 'blood crab'],
['blood hands', 'blood hand'],
['blood priests', 'blood priest'],
['blooms of doom', 'bloom of doom'],
['blue djinns', 'blue djinn'],
['boar mans', 'boar man'],
['boar men', 'boar man'],
['boars', 'boar'],
['bog frogs', 'bog frog'],
['bog raiders', 'bog raider'],
['bonebeasts', 'bonebeast'],
['bonelords', 'bonelord'],
['bonny bunnies', 'bonny bunny'],
['bony sea devils', 'bony sea devil'],
['boogies', 'boogy'],
['bound astral power', 'bound astral power'],
['brachiodemons', 'brachiodemon'],
['brain squids', 'brain squid'],
['braindeaths', 'braindeath'],
['branchy crawlers', 'branchy crawler'],
['breach broods', 'breach brood'],
['brides of night', 'bride of night'],
['brimstone bugs', 'brimstone bug'],
['brinebrute inferniarches', 'brinebrute inferniarch'],
['brittle skeletons', 'brittle skeleton'],
['broken shapers', 'broken shaper'],
['broodrider inferniarches', 'broodrider inferniarch'],
['bugs', 'bug'],
['bulltaur alchemists', 'bulltaur alchemist'],
['bulltaur brutes', 'bulltaur brute'],
['bulltaur forgepriests', 'bulltaur forgepriest'],
['burning books', 'burning book'],
['burning gladiators', 'burning gladiator'],
['burster spectres', 'burster spectre'],
['butterflies', 'butterfly'],
['cake golems', 'cake golem'],
['calamaries', 'calamary'],
['candy floss elementals', 'candy floss elemental'],
['candy horrors', 'candy horror'],
['canopic jars', 'canopic jar'],
['capricious phantoms', 'capricious phantom'],
['carniphilas', 'carniphila'],
['carnisylvan saplings', 'carnisylvan sapling'],
['carnivorous butterflies', 'carnivorous butterfly'],
['carnivostriches', 'carnivostrich'],
['carrion worms', 'carrion worm'],
['cats', 'cat'],
['cave chimeras', 'cave chimera'],
['cave devourers', 'cave devourer'],
['cave hydras', 'cave hydra'],
['cave parrots', 'cave parrot'],
['cave rats', 'cave rat'],
['cellar rats', 'cellar rat'],
['centipedes', 'centipede'],
['chakoya toolshapers', 'chakoya toolshaper'],
['chakoya tribewardens', 'chakoya tribewarden'],
['chakoya windcallers', 'chakoya windcaller'],
['charged disruptions', 'charged disruption'],
['charged energy elementals', 'charged energy elemental'],
['charged imps', 'charged imp'],
['chargers', 'charger'],
['charging Outburst', 'charging Outburst'],
['chasm spawns', 'chasm spawn'],
['cheeky sugar cubes', 'cheeky sugar cube'],
['chickens', 'chicken'],
['chocolate blobs', 'chocolate blob'],
['choking fears', 'choking fear'],
['clay guardians', 'clay guardian'],
['cliff striders', 'cliff strider'],
['cloaks of terror', 'cloak of terror'],
['clomps', 'clomp'],
['cobra assassins', 'cobra assassin'],
['cobra scouts', 'cobra scout'],
['cobra viziers', 'cobra vizier'],
['cobras', 'cobra'],
['cocoons', 'cocoon'],
['common beetles', 'common beetle'],
['containment crystals', 'containment crystal'],
['containment machines', 'containment machine'],
['control towers', 'control tower'],
['converters', 'converter'],
['coral frogs', 'coral frog'],
['corrupt nagas', 'corrupt naga'],
['corrupted souls', 'corrupted soul'],
['corym charlatans', 'corym charlatan'],
['corym skirmishers', 'corym skirmisher'],
['corym vanguards', 'corym vanguard'],
['cosmic energy prism A', 'cosmic energy prism A'],
['cosmic energy prism B', 'cosmic energy prism B'],
['cosmic energy prism C', 'cosmic energy prism C'],
['cosmic energy prism D', 'cosmic energy prism D'],
['courage leeches', 'courage leech'],
['cows', 'cow'],
['crabs', 'crab'],
['cracklers', 'crackler'],
['crape mans', 'crape man'],
['crape men', 'crape man'],
['crawlers', 'crawler'],
['crazed beggars', 'crazed beggar'],
['crazed dwarfs', 'crazed dwarf'],
['crazed summer rearguards', 'crazed summer rearguard'],
['crazed summer vanguards', 'crazed summer vanguard'],
['crazed winter rearguards', 'crazed winter rearguard'],
['crazed winter vanguards', 'crazed winter vanguard'],
['cream blobs', 'cream blob'],
['crimson frogs', 'crimson frog'],
['crocodiles', 'crocodile'],
['crustaceae giganticae', 'crustacea gigantica'],
['crypt defilers', 'crypt defiler'],
['crypt shamblers', 'crypt shambler'],
['crypt wardens', 'crypt warden'],
['crypt warriors', 'crypt warrior'],
['crystal spiders', 'crystal spider'],
['crystal wolves', 'crystal wolf'],
['crystalcrushers', 'crystalcrusher'],
['cult believers', 'cult believer'],
['cult enforcers', 'cult enforcer'],
['cult scholars', 'cult scholar'],
['cunning werepanthers', 'cunning werepanther'],
['cursed apes', 'cursed ape'],
['cursed books', 'cursed book'],
['cursed prospectors', 'cursed prospector'],
['cyclopes drone', 'cyclops drone'],
['cyclopes smith', 'cyclops smith'],
['cyclopes', 'cyclops'],
['damaged crystal golems', 'damaged crystal golem'],
['damaged worker golems', 'damaged worker golem'],
['damned souls', 'damned soul'],
['dark apprentices', 'dark apprentice'],
['dark carnisylvans', 'dark carnisylvan'],
['dark fauns', 'dark faun'],
['dark magicians', 'dark magician'],
['dark monks', 'dark monk'],
['dark soul reapers', 'dark soul reaper'],
['dark souls', 'dark soul'],
['dark torturers', 'dark torturer'],
['darklight constructs', 'darklight construct'],
['darklight emitters', 'darklight emitter'],
['darklight matters', 'darklight matter'],
['darklight sources', 'darklight source'],
['darklight strikers', 'darklight striker'],
['dawn bats', 'dawn bat'],
['dawn scorpions', 'dawn scorpion'],
['dawnfire asuras', 'dawnfire asura'],
['dawnflies', 'dawnfly'],
['death blobs', 'death blob'],
['death dragons', 'death dragon'],
['death priests', 'death priest'],
['death reapers', 'death reaper'],
['deathling scouts', 'deathling scout'],
['deathling spellsingers', 'deathling spellsinger'],
['deathslicers', 'deathslicer'],
['deathspawns', 'deathspawn'],
['decaying totems', 'decaying totem'],
['deepling brawlers', 'deepling brawler'],
['deepling elites', 'deepling elite'],
['deepling guards', 'deepling guard'],
['deepling master librarians', 'deepling master librarian'],
['deepling scouts', 'deepling scout'],
['deepling spellsingers', 'deepling spellsinger'],
['deepling tyrants', 'deepling tyrant'],
['deepling warriors', 'deepling warrior'],
['deepling workers', 'deepling worker'],
['deepsea blood crabs', 'deepsea blood crab'],
['deepworms', 'deepworm'],
['deer', 'deer'],
['defilers', 'defiler'],
['demon outcasts', 'demon outcast'],
['demon parrots', 'demon parrot'],
['demon skeletons', 'demon skeleton'],
['demons', 'demon'],
['depolarized cracklers', 'depolarized crackler'],
['depowered minotaurs', 'depowered minotaur'],
['desperate white deer', 'desperate white deer'],
['destroyed pillars', 'destroyed pillar'],
['destroyers', 'destroyer'],
['devourers', 'devourer'],
['diabolic imps', 'diabolic imp'],
['diamond servant replicas', 'diamond servant replica'],
['diamond servants', 'diamond servant'],
['dire penguins', 'dire penguin'],
['diremaws', 'diremaw'],
['disgusting oozes', 'disgusting ooze'],
['disruptions', 'disruption'],
['distorted phantoms', 'distorted phantom'],
['dogs', 'dog'],
['domestikions', 'domestikion'],
['doom deer', 'doom deer'],
['doomsday cultists', 'doomsday cultist'],
['dragolisks', 'dragolisk'],
['dragon hatchlings', 'dragon hatchling'],
['dragon lord hatchlings', 'dragon lord hatchling'],
['dragon lords', 'dragon lord'],
['dragon servants', 'dragon servant'],
['dragon wraths', 'dragon wrath'],
['dragonlings', 'dragonling'],
['dragons', 'dragon'],
['draken abominations', 'draken abomination'],
['draken elites', 'draken elite'],
['draken spellweavers', 'draken spellweaver'],
['draken warmasters', 'draken warmaster'],
['draptors', 'draptor'],
['dread intruders', 'dread intruder'],
['dread minions', 'dread minion'],
['dreadbeasts', 'dreadbeast'],
['drillworms', 'drillworm'],
['dromedaries', 'dromedary'],
['druid familiars', 'druid familiar'],
['druid\'s apparitions', 'druid\'s apparition'],
['dryads', 'dryad'],
['duskbringers', 'duskbringer'],
['dwarf dispensers', 'dwarf dispenser'],
['dwarf geomancers', 'dwarf geomancer'],
['dwarf guards', 'dwarf guard'],
['dwarf henchmen', 'dwarf henchman'],
['dwarf miners', 'dwarf miner'],
['dwarf soldiers', 'dwarf soldier'],
['dwarfs', 'dwarf'],
['dworc fleshhunters', 'dworc fleshhunter'],
['dworc venomsnipers', 'dworc venomsniper'],
['dworc voodoomasters', 'dworc voodoomaster'],
['earth elementals', 'earth elemental'],
['earworms', 'earworm'],
['efreet', 'efreet'],
['eggs', 'egg'],
['elder bonelords', 'elder bonelord'],
['elder forest furies', 'elder forest fury'],
['elder mummies', 'elder mummy'],
['elder wyrms', 'elder wyrm'],
['elephants', 'elephant'],
['elf arcanists', 'elf arcanist'],
['elf overseers', 'elf overseer'],
['elf scouts', 'elf scout'],
['elves', 'elf'],
['emerald damselflies', 'emerald damselfly'],
['emerald tortoises', 'emerald tortoise'],
['empowered glooth horror', 'empowered glooth horror'],
['energetic books', 'energetic book'],
['energized raging mages', 'energized raging mage'],
['energuardians of tales', 'energuardian of tales'],
['energy elementals', 'energy elemental'],
['energy pulse', 'energy pulse'],
['enfeebled silencers', 'enfeebled silencer'],
['enlighteneds of the cult', 'enlightened of the cult'],
['enraged bookworms', 'enraged bookworm'],
['enraged crystal golems', 'enraged crystal golem'],
['enraged pupated rootthings', 'enraged pupated rootthing'],
['enraged sand broods', 'enraged sand brood'],
['enraged souls', 'enraged soul'],
['enraged squirrels', 'enraged squirrel'],
['enraged white deer', 'enraged white deer'],
['enslaved dwarfs', 'enslaved dwarf'],
['enthralled demons', 'enthralled demon'],
['eruption of destruction', 'eruption of destruction'],
['essences of darkness', 'essence of darkness'],
['eternal guardians', 'eternal guardian'],
['evil prospectors', 'evil prospector'],
['evil sheep lord', 'evil sheep lord'],
['evil sheep', 'evil sheep'],
['execowtioners', 'execowtioner'],
['exotic bats', 'exotic bat'],
['exotic cave spiders', 'exotic cave spider'],
['eyeless devourers', 'eyeless devourer'],
['eyes of the seven', 'eye of the seven'],
['falcon knights', 'falcon knight'],
['falcon paladins', 'falcon paladin'],
['fauns', 'faun'],
['feeble glooth horror', 'feeble glooth horror'],
['feral sphinxes', 'feral sphinx'],
['feral werecrocodiles', 'feral werecrocodile'],
['feverish citizens', 'feverish citizen'],
['feversleeps', 'feversleep'],
['filth toads', 'filth toad'],
['fire devils', 'fire devil'],
['fire elementals', 'fire elemental'],
['firestarters', 'firestarter'],
['fish', 'fish'],
['flames of omrafir', 'flame of Omrafir'],
['flamethrowers', 'flamethrower'],
['flamingos', 'flamingo'],
['flimsy lost souls', 'flimsy lost soul'],
['floating savants', 'floating savant'],
['flying books', 'flying book'],
['foam stalkers', 'foam stalker'],
['forest furies', 'forest fury'],
['foxes', 'fox'],
['frazzlemaws', 'frazzlemaw'],
['freakish lost souls', 'freakish lost soul'],
['freed souls', 'freed soul'],
['frost dragon hatchlings', 'frost dragon hatchling'],
['frost dragons', 'frost dragon'],
['frost flower asuras', 'frost flower asura'],
['frost giantesses', 'frost giantess'],
['frost giants', 'frost giant'],
['frost servants', 'frost servant'],
['frost spiders', 'frost spider'],
['frost trolls', 'frost troll'],
['frozen minions', 'frozen minion'],
['fruit drops', 'fruit drop'],
['fungosauruses', 'fungosaurus'],
['furies', 'fury'],
['furious fire elementals', 'furious fire elemental'],
['furious trolls', 'furious troll'],
['gang members', 'gang member'],
['gargoyles', 'gargoyle'],
['gazer spectres', 'gazer spectre'],
['gazers', 'gazer'],
['ghastly dragons', 'ghastly dragon'],
['ghost wolves', 'ghost wolf'],
['ghosts of a planegazer', 'ghost of a planegazer'],
['ghosts', 'ghost'],
['ghoulish hyaenas', 'ghoulish hyaena'],
['ghouls', 'ghoul'],
['giant spiders', 'giant spider'],
['gingerbread mans', 'gingerbread man'],
['girtablilu warriors', 'girtablilu warrior'],
['gladiators', 'gladiator'],
['gloom wolves', 'gloom wolf'],
['glooth anemones', 'glooth anemone'],
['glooth bandits', 'glooth bandit'],
['glooth batteries', 'glooth battery'],
['glooth blobs', 'glooth blob'],
['glooth bombs', 'glooth bomb'],
['glooth brigands', 'glooth brigand'],
['glooth golems', 'glooth golem'],
['glooth horror', 'glooth horror'],
['glooth mashers', 'glooth masher'],
['glooth powered minotaurs', 'glooth-powered minotaur'],
['glooth slashers', 'glooth slasher'],
['glooth trashers', 'glooth trasher'],
['glooth-generators', 'glooth generator'],
['gnarlhounds', 'gnarlhound'],
['gnome pack crawlers', 'gnome pack crawler'],
['goblin assassins', 'goblin assassin'],
['goblin leaders', 'goblin leader'],
['goblin scavengers', 'goblin scavenger'],
['goblins', 'goblin'],
['goggle cakes', 'goggle cake'],
['golden servant replicas', 'golden servant replica'],
['golden servants', 'golden servant'],
['goldhanded cultist brides', 'goldhanded cultist bride'],
['goldhanded cultists', 'goldhanded cultist'],
['golem dispensers', 'golem dispenser'],
['gore horns', 'gore horn'],
['gorerillas', 'gorerilla'],
['gorger inferniarches', 'gorger inferniarch'],
['gozzlers', 'gozzler'],
['grave guards', 'grave guard'],
['grave robbers', 'grave robber'],
['gravediggers', 'gravedigger'],
['greater canopic jars', 'greater canopic jar'],
['greater death minions', 'greater death minion'],
['greater energy elementals', 'greater energy elemental'],
['greater fire elementals', 'greater fire elemental'],
['green djinns', 'green djinn'],
['green frogs', 'green frog'],
['grim reapers', 'grim reaper'],
['grimeleeches', 'grimeleech'],
['grove guardians', 'grove guardian'],
['grynch clan goblins', 'grynch clan goblin'],
['gryphons', 'gryphon'],
['guardian golems', 'guardian golem'],
['guardians of tales', 'guardian of tales'],
['guzzlemaws', 'guzzlemaw'],
['hands of cursed fate', 'hand of cursed fate'],
['hardened usurper archers', 'hardened usurper archer'],
['hardened usurper knights', 'hardened usurper knight'],
['hardened usurper warlocks', 'hardened usurper warlock'],
['harpies', 'harpy'],
['haunted dragons', 'haunted dragon'],
['haunted treelings', 'haunted treeling'],
['hazardous phantoms', 'hazardous phantom'],
['headpeckers', 'headpecker'],
['hell holes', 'hell hole'],
['hellfire fighters', 'hellfire fighter'],
['hellflayers', 'hellflayer'],
['hellhounds', 'hellhound'],
['hellhunter inferniarches', 'hellhunter inferniarch'],
['hellish portals', 'hellish portal'],
['hellspawns', 'hellspawn'],
['heralds of gloom', 'herald of gloom'],
['herd weevils', 'herd weevil'],
['heroes', 'hero'],
['hibernal moths', 'hibernal moth'],
['hideous fungi', 'hideous fungus'],
['high voltage elementals', 'high voltage elemental'],
['hive overseers', 'hive overseer'],
['hive pores', 'hive pore'],
['holy bog frogs', 'holy bog frog'],
['honey elementals', 'honey elemental'],
['honour guards', 'honour guard'],
['hoodinions', 'hoodinion'],
['horses', 'horse'],
['hot dogs', 'hot dog'],
['hulking carnisylvans', 'hulking carnisylvan'],
['hulking prehemoths', 'hulking prehemoth'],
['humongous fungi', 'humongous fungus'],
['humorless fungi', 'humorless fungus'],
['hunger worms', 'hunger worm'],
['hunters', 'hunter'],
['huskies', 'husky'],
['hyaenas', 'hyaena'],
['hydras', 'hydra'],
['ice dragons', 'ice dragon'],
['ice golems', 'ice golem'],
['ice witches', 'ice witch'],
['icecold books', 'icecold book'],
['icicles', 'icicle'],
['iks ahpututus', 'iks ahpututu'],
['iks aucars', 'iks aucar'],
['iks chukas', 'iks chuka'],
['iks churrascans', 'iks churrascan'],
['iks pututus', 'iks pututu'],
['iks yapunacs', 'iks yapunac'],
['imp wardens', 'imp warden'],
['infected weepers', 'infected weeper'],
['infernal demons', 'infernal demon'],
['infernal frogs', 'infernal frog'],
['infernal phantoms', 'infernal phantom'],
['infernalists', 'infernalist'],
['ink blobs', 'ink blob'],
['insane sirens', 'insane siren'],
['insect swarms', 'insect swarm'],
['insectoid scouts', 'insectoid scout'],
['insectoid workers', 'insectoid worker'],
['instable breach broods', 'instable breach brood'],
['instable sparkions', 'instable sparkion'],
['iron servant replicas', 'iron servant replica'],
['iron servants', 'iron servant'],
['ironblights', 'ironblight'],