-
Notifications
You must be signed in to change notification settings - Fork 0
/
diydudley-vars.js
2051 lines (1982 loc) · 115 KB
/
diydudley-vars.js
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
var colors = new Array(
"black",
"red",
"green",
"brown",
"blue",
"magenta",
"cyan",
"gray",
"darkgray",
"orange",
"brightgreen",
"yellow",
"brightblue",
"brightmagenta",
"brightcyan",
"white");
var nh_monster_chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ:;'@&";
var nh_object_chars = ")[=\"(%!?+/*$";
var nh_sym_sort_optgroups = new Array(
"",
"Monsters",
"Objects",
"Traps",
"Terrain Features",
"Misc"
);
var nethack_symbols_orig = new Array();
var nethack_symbols_array = new Array(
{'chr':"a", 'fg':"darkgray", 'text':"giant beetle", 'sort':1},
{'chr':"a", 'fg':"blue", 'text':"soldier ant", 'sort':1},
{'chr':"a", 'fg':"brown", 'text':"giant ant", 'sort':1},
{'chr':"a", 'fg':"magenta", 'text':"queen bee", 'sort':1},
{'chr':"a", 'fg':"red", 'text':"fire ant", 'sort':1},
{'chr':"a", 'fg':"yellow", 'text':"killer bee", 'sort':1},
{'chr':"b", 'fg':"cyan", 'text':"gelatinous cube", 'sort':1},
{'chr':"b", 'fg':"green", 'text':"acid blob", 'sort':1},
{'chr':"b", 'fg':"white", 'text':"quivering blob", 'sort':1},
{'chr':"c", 'fg':"brown", 'text':"chickatrice", 'sort':1},
{'chr':"c", 'fg':"red", 'text':"pyrolisk", 'sort':1},
{'chr':"c", 'fg':"yellow", 'text':"cockatrice", 'sort':1},
{'chr':"d", 'fg':"brown", 'text':"jackal", 'sort':1},
{'chr':"d", 'fg':"brown", 'text':"coyote", 'sort':1},
{'chr':"d", 'fg':"brown", 'text':"werejackal (dog)", 'sort':1},
{'chr':"d", 'fg':"brown", 'text':"wolf", 'sort':1},
{'chr':"d", 'fg':"brown", 'text':"werewolf (dog)", 'sort':1},
{'chr':"d", 'fg':"brown", 'text':"warg", 'sort':1},
{'chr':"d", 'fg':"cyan", 'text':"winter wolf cub", 'sort':1},
{'chr':"d", 'fg':"cyan", 'text':"winter wolf", 'sort':1},
{'chr':"d", 'fg':"red", 'text':"fox", 'sort':1},
{'chr':"d", 'fg':"red", 'text':"hell hound pup", 'sort':1},
{'chr':"d", 'fg':"red", 'text':"hell hound", 'sort':1},
{'chr':"d", 'fg':"red", 'text':"Cerberus", 'sort':1},
{'chr':"d", 'fg':"white", 'text':"little dog", 'sort':1},
{'chr':"d", 'fg':"white", 'text':"dog", 'sort':1},
{'chr':"d", 'fg':"white", 'text':"large dog", 'sort':1},
{'chr':"d", 'fg':"yellow", 'text':"dingo", 'sort':1},
{'chr':"e", 'fg':"blue", 'text':"floating eye", 'sort':1},
{'chr':"e", 'fg':"brightblue", 'text':"shocking sphere", 'sort':1},
{'chr':"e", 'fg':"brown", 'text':"beholder", 'sort':1},
{'chr':"e", 'fg':"gray", 'text':"gas spore", 'sort':1},
{'chr':"e", 'fg':"red", 'text':"flaming sphere", 'sort':1},
{'chr':"e", 'fg':"white", 'text':"freezing sphere", 'sort':1},
{'chr':"f", 'fg':"darkgray", 'text':"panther", 'sort':1},
{'chr':"f", 'fg':"brown", 'text':"jaguar", 'sort':1},
{'chr':"f", 'fg':"cyan", 'text':"lynx", 'sort':1},
{'chr':"f", 'fg':"white", 'text':"kitten", 'sort':1},
{'chr':"f", 'fg':"white", 'text':"housecat", 'sort':1},
{'chr':"f", 'fg':"white", 'text':"large cat", 'sort':1},
{'chr':"f", 'fg':"yellow", 'text':"tiger", 'sort':1},
{'chr':"g", 'fg':"brown", 'text':"gargoyle", 'sort':1},
{'chr':"g", 'fg':"green", 'text':"gremlin", 'sort':1},
{'chr':"g", 'fg':"magenta", 'text':"winged gargoyle", 'sort':1},
{'chr':"h", 'fg':"blue", 'text':"dwarf lord", 'sort':1},
{'chr':"h", 'fg':"brown", 'text':"bugbear", 'sort':1},
{'chr':"h", 'fg':"green", 'text':"hobbit", 'sort':1},
{'chr':"h", 'fg':"magenta", 'text':"dwarf king", 'sort':1},
{'chr':"h", 'fg':"magenta", 'text':"mind flayer", 'sort':1},
{'chr':"h", 'fg':"magenta", 'text':"master mind flayer", 'sort':1},
{'chr':"h", 'fg':"red", 'text':"dwarf", 'sort':1},
{'chr':"i", 'fg':"blue", 'text':"quasit", 'sort':1},
{'chr':"i", 'fg':"brown", 'text':"lemure", 'sort':1},
{'chr':"i", 'fg':"cyan", 'text':"tengu", 'sort':1},
{'chr':"i", 'fg':"green", 'text':"homunculus", 'sort':1},
{'chr':"i", 'fg':"red", 'text':"manes", 'sort':1},
{'chr':"i", 'fg':"red", 'text':"imp", 'sort':1},
{'chr':"j", 'fg':"blue", 'text':"blue jelly", 'sort':1},
{'chr':"j", 'fg':"brown", 'text':"ochre jelly", 'sort':1},
{'chr':"j", 'fg':"green", 'text':"spotted jelly", 'sort':1},
{'chr':"k", 'fg':"brightblue", 'text':"kobold shaman", 'sort':1},
{'chr':"k", 'fg':"brown", 'text':"kobold", 'sort':1},
{'chr':"k", 'fg':"magenta", 'text':"kobold lord", 'sort':1},
{'chr':"k", 'fg':"red", 'text':"large kobold", 'sort':1},
{'chr':"l", 'fg':"green", 'text':"leprechaun", 'sort':1},
{'chr':"m", 'fg':"brown", 'text':"small mimic", 'sort':1},
{'chr':"m", 'fg':"magenta", 'text':"giant mimic", 'sort':1},
{'chr':"m", 'fg':"red", 'text':"large mimic", 'sort':1},
{'chr':"n", 'fg':"blue", 'text':"water nymph", 'sort':1},
{'chr':"n", 'fg':"brown", 'text':"mountain nymph", 'sort':1},
{'chr':"n", 'fg':"green", 'text':"wood nymph", 'sort':1},
{'chr':"o", 'fg':"darkgray", 'text':"Uruk-hai", 'sort':1},
{'chr':"o", 'fg':"blue", 'text':"Mordor orc", 'sort':1},
{'chr':"o", 'fg':"brightblue", 'text':"orc shaman", 'sort':1},
{'chr':"o", 'fg':"brown", 'text':"hobgoblin", 'sort':1},
{'chr':"o", 'fg':"gray", 'text':"goblin", 'sort':1},
{'chr':"o", 'fg':"magenta", 'text':"orc-captain", 'sort':1},
{'chr':"o", 'fg':"red", 'text':"orc", 'sort':1},
{'chr':"o", 'fg':"yellow", 'text':"hill orc", 'sort':1},
{'chr':"p", 'fg':"cyan", 'text':"iron piercer", 'sort':1},
{'chr':"p", 'fg':"gray", 'text':"rock piercer", 'sort':1},
{'chr':"p", 'fg':"white", 'text':"glass piercer", 'sort':1},
{'chr':"q", 'fg':"darkgray", 'text':"mastodon", 'sort':1},
{'chr':"q", 'fg':"brown", 'text':"rothe", 'sort':1},
{'chr':"q", 'fg':"cyan", 'text':"wumpus", 'sort':1},
{'chr':"q", 'fg':"gray", 'text':"mumak", 'sort':1},
{'chr':"q", 'fg':"gray", 'text':"titanothere", 'sort':1},
{'chr':"q", 'fg':"gray", 'text':"baluchitherium", 'sort':1},
{'chr':"q", 'fg':"red", 'text':"leocrotta", 'sort':1},
{'chr':"r", 'fg':"brown", 'text':"sewer rat", 'sort':1},
{'chr':"r", 'fg':"brown", 'text':"giant rat", 'sort':1},
{'chr':"r", 'fg':"brown", 'text':"rabid rat", 'sort':1},
{'chr':"r", 'fg':"brown", 'text':"wererat (rodent)", 'sort':1},
{'chr':"r", 'fg':"brown", 'text':"woodchuck", 'sort':1},
{'chr':"r", 'fg':"gray", 'text':"rock mole", 'sort':1},
{'chr':"s", 'fg':"gray", 'text':"cave spider", 'sort':1},
{'chr':"s", 'fg':"magenta", 'text':"giant spider", 'sort':1},
{'chr':"s", 'fg':"magenta", 'text':"Scorpius", 'sort':1},
{'chr':"s", 'fg':"red", 'text':"scorpion", 'sort':1},
{'chr':"s", 'fg':"yellow", 'text':"centipede", 'sort':1},
{'chr':"t", 'fg':"green", 'text':"trapper", 'sort':1},
{'chr':"t", 'fg':"gray", 'text':"lurker above", 'sort':1},
{'chr':"u", 'fg':"brown", 'text':"pony", 'sort':1},
{'chr':"u", 'fg':"brown", 'text':"horse", 'sort':1},
{'chr':"u", 'fg':"brown", 'text':"warhorse", 'sort':1},
{'chr':"u", 'fg':"darkgray", 'text':"black unicorn", 'sort':1},
{'chr':"u", 'fg':"gray", 'text':"gray unicorn", 'sort':1},
{'chr':"u", 'fg':"white", 'text':"white unicorn", 'sort':1},
{'chr':"v", 'fg':"blue", 'text':"steam vortex", 'sort':1},
{'chr':"v", 'fg':"brightblue", 'text':"energy vortex", 'sort':1},
{'chr':"v", 'fg':"brown", 'text':"dust vortex", 'sort':1},
{'chr':"v", 'fg':"cyan", 'text':"ice vortex", 'sort':1},
{'chr':"v", 'fg':"gray", 'text':"fog cloud", 'sort':1},
{'chr':"v", 'fg':"yellow", 'text':"fire vortex", 'sort':1},
{'chr':"w", 'fg':"brown", 'text':"baby long worm", 'sort':1},
{'chr':"w", 'fg':"brown", 'text':"long worm", 'sort':1},
{'chr':"w", 'fg':"magenta", 'text':"baby purple worm", 'sort':1},
{'chr':"w", 'fg':"magenta", 'text':"purple worm", 'sort':1},
{'chr':"x", 'fg':"magenta", 'text':"grid bug", 'sort':1},
{'chr':"x", 'fg':"red", 'text':"xan", 'sort':1},
{'chr':"y", 'fg':"darkgray", 'text':"black light", 'sort':1},
{'chr':"y", 'fg':"yellow", 'text':"yellow light", 'sort':1},
{'chr':"z", 'fg':"brown", 'text':"zruty", 'sort':1},
{ },
{'chr':"A", 'fg':"green", 'text':"couatl", 'sort':1},
{'chr':"A", 'fg':"magenta", 'text':"Archon", 'sort':1},
{'chr':"A", 'fg':"white", 'text':"Angel", 'sort':1},
{'chr':"A", 'fg':"yellow", 'text':"Aleax", 'sort':1},
{'chr':"A", 'fg':"yellow", 'text':"ki-rin", 'sort':1},
{'chr':"B", 'fg':"darkgray", 'text':"raven", 'sort':1},
{'chr':"B", 'fg':"darkgray", 'text':"vampire bat", 'sort':1},
{'chr':"B", 'fg':"brown", 'text':"bat", 'sort':1},
{'chr':"B", 'fg':"red", 'text':"giant bat", 'sort':1},
{'chr':"C", 'fg':"brown", 'text':"plains centaur", 'sort':1},
{'chr':"C", 'fg':"cyan", 'text':"mountain centaur", 'sort':1},
{'chr':"C", 'fg':"green", 'text':"forest centaur", 'sort':1},
{'chr':"D", 'fg':"darkgray", 'text':"baby black dragon", 'sort':1},
{'chr':"D", 'fg':"darkgray", 'text':"black dragon", 'sort':1},
{'chr':"D", 'fg':"blue", 'text':"baby blue dragon", 'sort':1},
{'chr':"D", 'fg':"blue", 'text':"blue dragon", 'sort':1},
{'chr':"D", 'fg':"brightcyan", 'text':"baby silver dragon", 'sort':1},
{'chr':"D", 'fg':"brightcyan", 'text':"silver dragon", 'sort':1},
{'chr':"D", 'fg':"orange", 'text':"baby orange dragon", 'sort':1},
{'chr':"D", 'fg':"orange", 'text':"orange dragon", 'sort':1},
{'chr':"D", 'fg':"cyan", 'text':"baby shimmering dragon", 'sort':1},
{'chr':"D", 'fg':"cyan", 'text':"shimmering dragon", 'sort':1},
{'chr':"D", 'fg':"green", 'text':"baby green dragon", 'sort':1},
{'chr':"D", 'fg':"green", 'text':"green dragon", 'sort':1},
{'chr':"D", 'fg':"gray", 'text':"baby gray dragon", 'sort':1},
{'chr':"D", 'fg':"gray", 'text':"gray dragon", 'sort':1},
{'chr':"D", 'fg':"magenta", 'text':"Chromatic Dragon", 'sort':1},
{'chr':"D", 'fg':"red", 'text':"baby red dragon", 'sort':1},
{'chr':"D", 'fg':"red", 'text':"red dragon", 'sort':1},
{'chr':"D", 'fg':"red", 'text':"Ixoth", 'sort':1},
{'chr':"D", 'fg':"white", 'text':"baby white dragon", 'sort':1},
{'chr':"D", 'fg':"white", 'text':"white dragon", 'sort':1},
{'chr':"D", 'fg':"yellow", 'text':"baby yellow dragon", 'sort':1},
{'chr':"D", 'fg':"yellow", 'text':"yellow dragon", 'sort':1},
{'chr':"E", 'fg':"blue", 'text':"water elemental", 'sort':1},
{'chr':"E", 'fg':"brown", 'text':"earth elemental", 'sort':1},
{'chr':"E", 'fg':"cyan", 'text':"air elemental", 'sort':1},
{'chr':"E", 'fg':"white", 'text':"stalker", 'sort':1},
{'chr':"E", 'fg':"yellow", 'text':"fire elemental", 'sort':1},
{'chr':"F", 'fg':"brightgreen", 'text':"lichen", 'sort':1},
{'chr':"F", 'fg':"brown", 'text':"brown mold", 'sort':1},
{'chr':"F", 'fg':"green", 'text':"green mold", 'sort':1},
{'chr':"F", 'fg':"magenta", 'text':"shrieker", 'sort':1},
{'chr':"F", 'fg':"magenta", 'text':"violet fungus", 'sort':1},
{'chr':"F", 'fg':"red", 'text':"red mold", 'sort':1},
{'chr':"F", 'fg':"yellow", 'text':"yellow mold", 'sort':1},
{'chr':"G", 'fg':"blue", 'text':"gnome lord", 'sort':1},
{'chr':"G", 'fg':"brightblue", 'text':"gnomish wizard", 'sort':1},
{'chr':"G", 'fg':"brown", 'text':"gnome", 'sort':1},
{'chr':"G", 'fg':"magenta", 'text':"gnome king", 'sort':1},
{'chr':"H", 'fg':"blue", 'text':"storm giant", 'sort':1},
{'chr':"H", 'fg':"brown", 'text':"ettin", 'sort':1},
{'chr':"H", 'fg':"brown", 'text':"minotaur", 'sort':1},
{'chr':"H", 'fg':"cyan", 'text':"hill giant", 'sort':1},
{'chr':"H", 'fg':"gray", 'text':"stone giant", 'sort':1},
{'chr':"H", 'fg':"gray", 'text':"Cyclops", 'sort':1},
{'chr':"H", 'fg':"magenta", 'text':"titan", 'sort':1},
{'chr':"H", 'fg':"magenta", 'text':"Lord Surtur", 'sort':1},
{'chr':"H", 'fg':"red", 'text':"giant", 'sort':1},
{'chr':"H", 'fg':"white", 'text':"frost giant", 'sort':1},
{'chr':"H", 'fg':"yellow", 'text':"fire giant", 'sort':1},
{'chr':"J", 'fg':"orange", 'text':"jabberwock", 'sort':1},
{'chr':"J", 'fg':"magenta", 'text':"vorpal jabberwock", 'sort':1},
{'chr':"K", 'fg':"blue", 'text':"Keystone Kop", 'sort':1},
{'chr':"K", 'fg':"blue", 'text':"Kop Sergeant", 'sort':1},
{'chr':"K", 'fg':"cyan", 'text':"Kop Lieutenant", 'sort':1},
{'chr':"K", 'fg':"magenta", 'text':"Kop Kaptain", 'sort':1},
{'chr':"L", 'fg':"brown", 'text':"lich", 'sort':1},
{'chr':"L", 'fg':"magenta", 'text':"master lich", 'sort':1},
{'chr':"L", 'fg':"magenta", 'text':"arch-lich", 'sort':1},
{'chr':"L", 'fg':"red", 'text':"demilich", 'sort':1},
{'chr':"M", 'fg':"blue", 'text':"ettin mummy", 'sort':1},
{'chr':"M", 'fg':"brown", 'text':"kobold mummy", 'sort':1},
{'chr':"M", 'fg':"cyan", 'text':"giant mummy", 'sort':1},
{'chr':"M", 'fg':"green", 'text':"elf mummy", 'sort':1},
{'chr':"M", 'fg':"gray", 'text':"orc mummy", 'sort':1},
{'chr':"M", 'fg':"gray", 'text':"human mummy", 'sort':1},
{'chr':"M", 'fg':"red", 'text':"gnome mummy", 'sort':1},
{'chr':"M", 'fg':"red", 'text':"dwarf mummy", 'sort':1},
{'chr':"N", 'fg':"darkgray", 'text':"black naga hatchling", 'sort':1},
{'chr':"N", 'fg':"darkgray", 'text':"black naga", 'sort':1},
{'chr':"N", 'fg':"green", 'text':"guardian naga hatchling", 'sort':1},
{'chr':"N", 'fg':"green", 'text':"guardian naga", 'sort':1},
{'chr':"N", 'fg':"red", 'text':"red naga hatchling", 'sort':1},
{'chr':"N", 'fg':"red", 'text':"red naga", 'sort':1},
{'chr':"N", 'fg':"yellow", 'text':"golden naga hatchling", 'sort':1},
{'chr':"N", 'fg':"yellow", 'text':"golden naga", 'sort':1},
{'chr':"O", 'fg':"brown", 'text':"ogre", 'sort':1},
{'chr':"O", 'fg':"magenta", 'text':"ogre king", 'sort':1},
{'chr':"O", 'fg':"red", 'text':"ogre lord", 'sort':1},
{'chr':"P", 'fg':"darkgray", 'text':"black pudding", 'sort':1},
{'chr':"P", 'fg':"brown", 'text':"brown pudding", 'sort':1},
{'chr':"P", 'fg':"green", 'text':"green slime", 'sort':1},
{'chr':"P", 'fg':"gray", 'text':"gray ooze", 'sort':1},
{'chr':"Q", 'fg':"cyan", 'text':"quantum mechanic", 'sort':1},
{'chr':"R", 'fg':"blue", 'text':"disenchanter", 'sort':1},
{'chr':"R", 'fg':"brown", 'text':"rust monster", 'sort':1},
{'chr':"S", 'fg':"blue", 'text':"pit viper", 'sort':1},
{'chr':"S", 'fg':"blue", 'text':"cobra", 'sort':1},
{'chr':"S", 'fg':"brown", 'text':"snake", 'sort':1},
{'chr':"S", 'fg':"green", 'text':"garter snake", 'sort':1},
{'chr':"S", 'fg':"magenta", 'text':"python", 'sort':1},
{'chr':"S", 'fg':"red", 'text':"water moccasin", 'sort':1},
{'chr':"T", 'fg':"blue", 'text':"water troll", 'sort':1},
{'chr':"T", 'fg':"brown", 'text':"troll", 'sort':1},
{'chr':"T", 'fg':"cyan", 'text':"rock troll", 'sort':1},
{'chr':"T", 'fg':"magenta", 'text':"Olog-hai", 'sort':1},
{'chr':"T", 'fg':"white", 'text':"ice troll", 'sort':1},
{'chr':"U", 'fg':"brown", 'text':"umber hulk", 'sort':1},
{'chr':"V", 'fg':"blue", 'text':"vampire lord", 'sort':1},
{'chr':"V", 'fg':"brightblue", 'text':"vampire mage", 'sort':1},
{'chr':"V", 'fg':"magenta", 'text':"Vlad the Impaler", 'sort':1},
{'chr':"V", 'fg':"red", 'text':"vampire", 'sort':1},
{'chr':"W", 'fg':"darkgray", 'text':"wraith", 'sort':1},
{'chr':"W", 'fg':"gray", 'text':"barrow wight", 'sort':1},
{'chr':"W", 'fg':"magenta", 'text':"Nazgul", 'sort':1},
{'chr':"X", 'fg':"brown", 'text':"xorn", 'sort':1},
{'chr':"Y", 'fg':"darkgray", 'text':"carnivorous ape", 'sort':1},
{'chr':"Y", 'fg':"brown", 'text':"ape", 'sort':1},
{'chr':"Y", 'fg':"brown", 'text':"owlbear", 'sort':1},
{'chr':"Y", 'fg':"gray", 'text':"monkey", 'sort':1},
{'chr':"Y", 'fg':"gray", 'text':"sasquatch", 'sort':1},
{'chr':"Y", 'fg':"white", 'text':"yeti", 'sort':1},
{'chr':"Z", 'fg':"darkgray", 'text':"ghoul", 'sort':1},
{'chr':"Z", 'fg':"blue", 'text':"ettin zombie", 'sort':1},
{'chr':"Z", 'fg':"brown", 'text':"kobold zombie", 'sort':1},
{'chr':"Z", 'fg':"brown", 'text':"gnome zombie", 'sort':1},
{'chr':"Z", 'fg':"cyan", 'text':"giant zombie", 'sort':1},
{'chr':"Z", 'fg':"green", 'text':"elf zombie", 'sort':1},
{'chr':"Z", 'fg':"gray", 'text':"orc zombie", 'sort':1},
{'chr':"Z", 'fg':"red", 'text':"dwarf zombie", 'sort':1},
{'chr':"Z", 'fg':"white", 'text':"human zombie", 'sort':1},
{'chr':"Z", 'fg':"white", 'text':"skeleton", 'sort':1},
{},
{'chr':" ", 'fg':"gray", 'text':"ghost", 'sort':1},
{'chr':" ", 'fg':"darkgray", 'text':"shade", 'sort':1},
{'chr':"&", 'fg':"blue", 'text':"water demon", 'sort':1},
{'chr':"&", 'fg':"brightblue", 'text':"mail daemon", 'sort':1},
{'chr':"&", 'fg':"brightgreen", 'text':"Juiblex", 'sort':1},
{'chr':"&", 'fg':"brown", 'text':"horned devil", 'sort':1},
{'chr':"&", 'fg':"gray", 'text':"succubus", 'sort':1},
{'chr':"&", 'fg':"gray", 'text':"incubus", 'sort':1},
{'chr':"&", 'fg':"gray", 'text':"bone devil", 'sort':1},
{'chr':"&", 'fg':"gray", 'text':"sandestin", 'sort':1},
{'chr':"&", 'fg':"magenta", 'text':"Yeenoghu", 'sort':1},
{'chr':"&", 'fg':"magenta", 'text':"Orcus", 'sort':1},
{'chr':"&", 'fg':"magenta", 'text':"Geryon", 'sort':1},
{'chr':"&", 'fg':"magenta", 'text':"Dispater", 'sort':1},
{'chr':"&", 'fg':"magenta", 'text':"Baalzebub", 'sort':1},
{'chr':"&", 'fg':"magenta", 'text':"Asmodeus", 'sort':1},
{'chr':"&", 'fg':"magenta", 'text':"Demogorgon", 'sort':1},
{'chr':"&", 'fg':"magenta", 'text':"Death", 'sort':1},
{'chr':"&", 'fg':"magenta", 'text':"Pestilence", 'sort':1},
{'chr':"&", 'fg':"magenta", 'text':"Famine", 'sort':1},
{'chr':"&", 'fg':"red", 'text':"erinys", 'sort':1},
{'chr':"&", 'fg':"red", 'text':"barbed devil", 'sort':1},
{'chr':"&", 'fg':"red", 'text':"marilith", 'sort':1},
{'chr':"&", 'fg':"red", 'text':"vrock", 'sort':1},
{'chr':"&", 'fg':"red", 'text':"hezrou", 'sort':1},
{'chr':"&", 'fg':"red", 'text':"nalfeshnee", 'sort':1},
{'chr':"&", 'fg':"red", 'text':"pit fiend", 'sort':1},
{'chr':"&", 'fg':"red", 'text':"balrog", 'sort':1},
{'chr':"&", 'fg':"red", 'text':"Minion of Huhetotl", 'sort':1},
{'chr':"&", 'fg':"red", 'text':"Nalzok", 'sort':1},
{'chr':"&", 'fg':"white", 'text':"ice devil", 'sort':1},
{'chr':"&", 'fg':"yellow", 'text':"djinni", 'sort':1},
{'chr':"'", 'fg':"brown", 'text':"rope golem", 'sort':1},
{'chr':"'", 'fg':"brown", 'text':"leather golem", 'sort':1},
{'chr':"'", 'fg':"brown", 'text':"wood golem", 'sort':1},
{'chr':"'", 'fg':"brown", 'text':"clay golem", 'sort':1},
{'chr':"'", 'fg':"cyan", 'text':"glass golem", 'sort':1},
{'chr':"'", 'fg':"cyan", 'text':"iron golem", 'sort':1},
{'chr':"'", 'fg':"gray", 'text':"stone golem", 'sort':1},
{'chr':"'", 'fg':"red", 'text':"flesh golem", 'sort':1},
{'chr':"'", 'fg':"white", 'text':"paper golem", 'sort':1},
{'chr':"'", 'fg':"yellow", 'text':"straw golem", 'sort':1},
{'chr':"'", 'fg':"yellow", 'text':"gold golem", 'sort':1},
{'chr':":", 'fg':"orange", 'text':"salamander", 'sort':1},
{'chr':":", 'fg':"brown", 'text':"iguana", 'sort':1},
{'chr':":", 'fg':"brown", 'text':"baby crocodile", 'sort':1},
{'chr':":", 'fg':"brown", 'text':"chameleon", 'sort':1},
{'chr':":", 'fg':"brown", 'text':"crocodile", 'sort':1},
{'chr':":", 'fg':"green", 'text':"gecko", 'sort':1},
{'chr':":", 'fg':"green", 'text':"lizard", 'sort':1},
{'chr':":", 'fg':"yellow", 'text':"newt", 'sort':1},
{'chr':";", 'fg':"blue", 'text':"jellyfish", 'sort':1},
{'chr':";", 'fg':"brightblue", 'text':"electric eel", 'sort':1},
{'chr':";", 'fg':"cyan", 'text':"giant eel", 'sort':1},
{'chr':";", 'fg':"gray", 'text':"shark", 'sort':1},
{'chr':";", 'fg':"red", 'text':"piranha", 'sort':1},
{'chr':";", 'fg':"red", 'text':"kraken", 'sort':1},
{'chr':"@", 'fg':"darkgray", 'text':"Grand Master", 'sort':1},
{'chr':"@", 'fg':"darkgray", 'text':"Dark One", 'sort':1},
{'chr':"@", 'fg':"blue", 'text':"guard", 'sort':1},
{'chr':"@", 'fg':"blue", 'text':"captain", 'sort':1},
{'chr':"@", 'fg':"brightblue", 'text':"elf-lord", 'sort':1},
{'chr':"@", 'fg':"brightblue", 'text':"Oracle", 'sort':1},
{'chr':"@", 'fg':"brightgreen", 'text':"Green-elf", 'sort':1},
{'chr':"@", 'fg':"brightgreen", 'text':"Medusa", 'sort':1},
{'chr':"@", 'fg':"orange", 'text':"werewolf (human)", 'sort':1},
{'chr':"@", 'fg':"brown", 'text':"wererat (human)", 'sort':1},
{'chr':"@", 'fg':"green", 'text':"Woodland-elf", 'sort':1},
{'chr':"@", 'fg':"green", 'text':"lieutenant", 'sort':1},
{'chr':"@", 'fg':"green", 'text':"watch captain", 'sort':1},
{'chr':"@", 'fg':"green", 'text':"Neferet the Green", 'sort':1},
{'chr':"@", 'fg':"gray", 'text':"Grey-elf", 'sort':1},
{'chr':"@", 'fg':"gray", 'text':"soldier", 'sort':1},
{'chr':"@", 'fg':"gray", 'text':"watchman", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Elvenking", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Wizard of Yendor", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Croesus", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Lord Carnarvon", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Pelias", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Shaman Karnov", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Earendil", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Hippocrates", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"King Arthur", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Orion", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Master of Thieves", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Lord Sato", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Norn", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Thoth Amon", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Master Kaen", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Master Assassin", 'sort':1},
{'chr':"@", 'fg':"magenta", 'text':"Ashikaga Takauji", 'sort':1},
{'chr':"@", 'fg':"red", 'text':"werejackal (human)", 'sort':1},
{'chr':"@", 'fg':"red", 'text':"sergeant", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"human", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"elf", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"doppelganger", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"nurse", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"shopkeeper", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"prisoner", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"aligned priest", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"high priest", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"Charon", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"archeologist", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"barbarian", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"caveman", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"cavewoman", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"healer", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"knight", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"monk", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"priest", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"priestess", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"ranger", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"rogue", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"samurai", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"tourist", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"valkyrie", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"wizard", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"Arch Priest", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"Twoflower", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"student", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"chieftain", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"neanderthal", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"High-elf", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"attendant", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"page", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"abbot", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"acolyte", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"hunter", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"thug", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"ninja", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"roshi", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"guide", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"warrior", 'sort':1},
{'chr':"@", 'fg':"white", 'text':"apprentice", 'sort':1},
{'chr':"~", 'fg':"brown", 'text':"long worm tail", 'sort':1},
{'chr':"]", 'fg':"darkgray", 'text':"strange object", 'sort':1},
{ },
/* item suggestions */
{'chr':")", 'fg':"cyan", 'text':"weapon, metal", 'sort':2},
{'chr':")", 'fg':"brown", 'text':"weapon, wood", 'sort':2},
{'chr':"[", 'fg':"cyan", 'text':"armor, metal", 'sort':2},
{'chr':"[", 'fg':"brown", 'text':"armor, leather", 'sort':2},
{'chr':"=", 'fg':"white", 'text':"ring", 'sort':2},
{'chr':'"', 'fg':"cyan", 'text':"amulet", 'sort':2},
{'chr':"(", 'fg':"yellow", 'text':"tool", 'sort':2},
{'chr':"%", 'fg':"brown", 'text':"food", 'sort':2},
{'chr':"!", 'fg':"red", 'text':"potion", 'sort':2},
{'chr':"?", 'fg':"white", 'text':"scroll", 'sort':2},
{'chr':"+", 'fg':"brightgreen", 'text':"spellbook", 'sort':2},
{'chr':"/", 'fg':"magenta", 'text':"wand", 'sort':2},
{'chr':"$", 'fg':"yellow", 'text':"gold", 'sort':2},
{'chr':"*", 'fg':"gray", 'text':"gem", 'sort':2},
{'chr':"*", 'fg':"gray", 'text':"rock", 'sort':2},
{'chr':"`", 'fg':"white", 'text':"statue", 'sort':2},
{'chr':"`", 'fg':"gray", 'text':"boulder", 'sort':2},
{'chr':"`", 'fg':"gray", 'text':"statue", 'sort':2},
{'chr':"0", 'fg':"gray", 'text':"boulder", 'sort':2},
{'chr':"0", 'fg':"cyan", 'text':"iron ball", 'sort':2},
{'chr':"_", 'fg':"cyan", 'text':"iron chain", 'sort':2},
{'chr':".", 'fg':"brown", 'text':"venom", 'sort':2},
{ },
/* traps */
{'chr':"^", 'text':"arrow trap", 'fg':"cyan", 'sort':3},
{'chr':"^", 'text':"dart trap", 'fg':"cyan", 'sort':3},
{'chr':"^", 'text':"falling rock trap", 'fg':"gray", 'sort':3},
{'chr':"^", 'text':"squeaky board", 'fg':"brown", 'sort':3},
{'chr':"^", 'text':"bear trap", 'fg':"cyan", 'sort':3},
{'chr':"^", 'text':"land mine", 'fg':"red", 'sort':3},
{'chr':"^", 'text':"rolling boulder trap", 'fg':"gray", 'sort':3},
{'chr':"^", 'text':"sleeping gas trap", 'fg':"brightblue", 'sort':3},
{'chr':"^", 'text':"rust trap", 'fg':"blue", 'sort':3},
{'chr':"^", 'text':"fire trap", 'fg':"orange", 'sort':3},
{'chr':"^", 'text':"pit", 'fg':"darkgray", 'sort':3},
{'chr':"^", 'text':"spiked pit", 'fg':"darkgray", 'sort':3},
{'chr':"^", 'text':"hole", 'fg':"brown", 'sort':3},
{'chr':"^", 'text':"trap door", 'fg':"brown", 'sort':3},
{'chr':"^", 'text':"teleportation trap", 'fg':"magenta", 'sort':3},
{'chr':"^", 'text':"level teleporter", 'fg':"magenta", 'sort':3},
{'chr':"^", 'text':"magic portal", 'fg':"brightmagenta", 'sort':3},
{'chr':'"', 'text':"web", 'fg':"gray", 'sort':3},
{'chr':"^", 'text':"statue trap", 'fg':"gray", 'sort':3},
{'chr':"^", 'text':"magic trap", 'fg':"brightblue", 'sort':3},
{'chr':"^", 'text':"anti-magic field", 'fg':"brightblue", 'sort':3},
{'chr':"^", 'text':"polymorph trap", 'fg':"brightgreen", 'sort':3},
{ },
/* terrain features */
{'chr':" ", 'fg':"gray", 'text':"solid rock", 'sort':4},
{'chr':".", 'fg':"gray", 'text':"room floor", 'sort':4},
{'chr':".", 'fg':"gray", 'text':"doorway", 'sort':4},
{'chr':"-", 'fg':"gray", 'text':"wall, horizontal", 'sort':4},
{'chr':"|", 'fg':"gray", 'text':"wall, vertical", 'sort':4},
{'chr':"+", 'fg':"brown", 'text':"door, closed", 'sort':4},
{'chr':"-", 'fg':"brown", 'text':"open door, vertical", 'sort':4},
{'chr':"|", 'fg':"brown", 'text':"open door, horizontal", 'sort':4},
{'chr':"#", 'fg':"gray", 'text':"corridor", 'sort':4},
{'chr':"#", 'fg':"gray", 'text':"cloud", 'sort':4},
{'chr':"#", 'fg':"gray", 'text':"kitchen sink", 'sort':4},
{'chr':"#", 'fg':"white", 'text':"corridor, lit", 'sort':4},
{'chr':"#", 'fg':"cyan", 'text':"iron bars", 'sort':4},
{'chr':"#", 'fg':"green", 'text':"tree", 'sort':4},
{'chr':"#", 'fg':"brown", 'text':"raised drawbridge", 'sort':4},
{'chr':".", 'fg':"brown", 'text':"lowered drawbridge", 'sort':4},
{'chr':"<", 'fg':"gray", 'text':"stairs up", 'sort':4},
{'chr':">", 'fg':"gray", 'text':"stairs down", 'sort':4},
{'chr':"<", 'fg':"brown", 'text':"ladder up", 'sort':4},
{'chr':">", 'fg':"brown", 'text':"ladder down", 'sort':4},
{'chr':"_", 'fg':"gray", 'text':"altar", 'sort':4},
{'chr':"|", 'fg':"gray", 'text':"grave", 'sort':4},
{'chr':"\\", 'fg':"yellow", 'text':"throne", 'sort':4},
{'chr':"{", 'fg':"blue", 'text':"fountain", 'sort':4},
{'chr':"}", 'fg':"blue", 'text':"water, pool", 'sort':4},
{'chr':"}", 'fg':"red", 'text':"lava", 'sort':4},
{'chr':".", 'fg':"cyan", 'text':"ice", 'sort':4},
{},
{'chr':"!", 'fg':"white", 'text':"camera flash", 'sort':5},
{'chr':"*", 'fg':"white", 'text':"digging beam", 'sort':5},
{'chr':"1", 'fg':"red", 'text':"warning symbol, 1", 'sort':5},
{'chr':"2", 'fg':"red", 'text':"warning symbol, 2", 'sort':5},
{'chr':"3", 'fg':"red", 'text':"warning symbol, 3", 'sort':5},
{'chr':"4", 'fg':"magenta", 'text':"warning symbol, 4", 'sort':5},
{'chr':"5", 'fg':"brightmagenta", 'text':"warning symbol, 5", 'sort':5}
);
var angband_symbols_array = new Array(
{'chr':"A", 'fg':"brightblue", 'text':"Archangel", 'sort':1},
{'chr':"A", 'fg':"brightgreen", 'text':"Cherub", 'sort':1},
{'chr':"A", 'fg':"darkgray", 'text':"Azriel, Angel of Death", 'sort':1},
{'chr':"A", 'fg':"orange", 'text':"Angel", 'sort':1},
{'chr':"A", 'fg':"orange", 'text':"Uriel, Angel of Fire", 'sort':1},
{'chr':"A", 'fg':"red", 'text':"Seraph", 'sort':1},
{'chr':"A", 'fg':"white", 'text':"Gabriel, the Messenger", 'sort':1},
{'chr':"A", 'fg':"yellow", 'text':"Archon", 'sort':1},
{'chr':"B", 'fg':"brown", 'text':"Giant roc", 'sort':1},
{'chr':"B", 'fg':"brown", 'text':"Nighthawk", 'sort':1},
{'chr':"B", 'fg':"darkgray", 'text':"Crebain", 'sort':1},
{'chr':"B", 'fg':"darkgray", 'text':"Raven", 'sort':1},
{'chr':"B", 'fg':"darkgray", 'text':"Winged Horror", 'sort':1},
{'chr':"B", 'fg':"gray", 'text':"Crow", 'sort':1},
{'chr':"B", 'fg':"red", 'text':"The Phoenix", 'sort':1},
{'chr':"C", 'fg':"brightblue", 'text':"Blink dog", 'sort':1},
{'chr':"C", 'fg':"brown", 'text':"Draugluin, Sire of All Werewolves", 'sort':1},
{'chr':"C", 'fg':"brown", 'text':"Fang, Farmer Maggot's dog", 'sort':1},
{'chr':"C", 'fg':"brown", 'text':"Grip, Farmer Maggot's dog", 'sort':1},
{'chr':"C", 'fg':"brown", 'text':"Jackal", 'sort':1},
{'chr':"C", 'fg':"brown", 'text':"Scruffy little dog", 'sort':1},
{'chr':"C", 'fg':"brown", 'text':"Wolf", 'sort':1},
{'chr':"C", 'fg':"darkgray", 'text':"Werewolf", 'sort':1},
{'chr':"C", 'fg':"darkgray", 'text':"Wolf chieftain", 'sort':1},
{'chr':"C", 'fg':"gray", 'text':"Huan, Wolfhound of the Valar", 'sort':1},
{'chr':"C", 'fg':"gray", 'text':"Warg", 'sort':1},
{'chr':"C", 'fg':"red", 'text':"Carcharoth, the Jaws of Thirst", 'sort':1},
{'chr':"C", 'fg':"red", 'text':"Hellhound", 'sort':1},
{'chr':"C", 'fg':"red", 'text':"Hellhound", 'sort':1},
{'chr':"C", 'fg':"white", 'text':"White wolf", 'sort':1},
{'chr':"D", 'fg':"blue", 'text':"Ancient blue dragon", 'sort':1},
{'chr':"D", 'fg':"blue", 'text':"Great Storm Wyrm", 'sort':1},
{'chr':"D", 'fg':"brightblue", 'text':"Great Wyrm of Law", 'sort':1},
{'chr':"D", 'fg':"brightgreen", 'text':"Death drake", 'sort':1},
{'chr':"D", 'fg':"brightgreen", 'text':"Dracolich", 'sort':1},
{'chr':"D", 'fg':"brown", 'text':"Ancient bronze dragon", 'sort':1},
{'chr':"D", 'fg':"brown", 'text':"Great Wyrm of Perplexity", 'sort':1},
{'chr':"D", 'fg':"brown", 'text':"Great crystal drake", 'sort':1},
{'chr':"D", 'fg':"darkgray", 'text':"Ancalagon the Black", 'sort':1},
{'chr':"D", 'fg':"gray", 'text':"Ancient black dragon", 'sort':1},
{'chr':"D", 'fg':"gray", 'text':"Great Bile Wyrm", 'sort':1},
{'chr':"D", 'fg':"gray", 'text':"Scatha the Worm", 'sort':1},
{'chr':"D", 'fg':"green", 'text':"Ancient green dragon", 'sort':1},
{'chr':"D", 'fg':"green", 'text':"Great Swamp Wyrm", 'sort':1},
{'chr':"D", 'fg':"magenta", 'text':"Ancient multi-hued dragon", 'sort':1},
{'chr':"D", 'fg':"magenta", 'text':"Great Wyrm of Balance", 'sort':1},
{'chr':"D", 'fg':"magenta", 'text':"Great Wyrm of Chaos", 'sort':1},
{'chr':"D", 'fg':"magenta", 'text':"Great Wyrm of Many Colours", 'sort':1},
{'chr':"D", 'fg':"orange", 'text':"Dracolisk", 'sort':1},
{'chr':"D", 'fg':"orange", 'text':"Ethereal dragon", 'sort':1},
{'chr':"D", 'fg':"orange", 'text':"Glaurung, Father of the Dragons", 'sort':1},
{'chr':"D", 'fg':"orange", 'text':"Itangast the Fire Drake", 'sort':1},
{'chr':"D", 'fg':"orange", 'text':"Smaug the Golden", 'sort':1},
{'chr':"D", 'fg':"red", 'text':"Ancient red dragon", 'sort':1},
{'chr':"D", 'fg':"red", 'text':"Great Hell Wyrm", 'sort':1},
{'chr':"D", 'fg':"white", 'text':"Ancient white dragon", 'sort':1},
{'chr':"D", 'fg':"white", 'text':"Great Ice Wyrm", 'sort':1},
{'chr':"D", 'fg':"yellow", 'text':"Ancient gold dragon", 'sort':1},
{'chr':"D", 'fg':"yellow", 'text':"Great Wyrm of Thunder", 'sort':1},
{'chr':"E", 'fg':"blue", 'text':"Waldern, King of Water", 'sort':1},
{'chr':"E", 'fg':"blue", 'text':"Water elemental", 'sort':1},
{'chr':"E", 'fg':"blue", 'text':"Water spirit", 'sort':1},
{'chr':"E", 'fg':"brightblue", 'text':"Air elemental", 'sort':1},
{'chr':"E", 'fg':"brightblue", 'text':"Air spirit", 'sort':1},
{'chr':"E", 'fg':"brightblue", 'text':"Ariel, Queen of Air", 'sort':1},
{'chr':"E", 'fg':"brown", 'text':"Earth elemental", 'sort':1},
{'chr':"E", 'fg':"brown", 'text':"Earth spirit", 'sort':1},
{'chr':"E", 'fg':"brown", 'text':"Quaker, Master of Earth", 'sort':1},
{'chr':"E", 'fg':"gray", 'text':"Will o' the wisp", 'sort':1},
{'chr':"E", 'fg':"green", 'text':"Ooze elemental", 'sort':1},
{'chr':"E", 'fg':"orange", 'text':"Magma elemental", 'sort':1},
{'chr':"E", 'fg':"orange", 'text':"Smoke elemental", 'sort':1},
{'chr':"E", 'fg':"red", 'text':"Fire elemental", 'sort':1},
{'chr':"E", 'fg':"red", 'text':"Fire spirit", 'sort':1},
{'chr':"E", 'fg':"red", 'text':"Vargo, Tyrant of Fire", 'sort':1},
{'chr':"E", 'fg':"white", 'text':"Ice elemental", 'sort':1},
{'chr':"E", 'fg':"yellow", 'text':"Invisible stalker", 'sort':1},
{'chr':"F", 'fg':"brown", 'text':"Giant bronze dragon fly", 'sort':1},
{'chr':"F", 'fg':"gray", 'text':"Giant black dragon fly", 'sort':1},
{'chr':"F", 'fg':"green", 'text':"Giant green dragon fly", 'sort':1},
{'chr':"F", 'fg':"white", 'text':"Giant white dragon fly", 'sort':1},
{'chr':"F", 'fg':"yellow", 'text':"Giant gold dragon fly", 'sort':1},
{'chr':"G", 'fg':"blue", 'text':"Banshee", 'sort':1},
{'chr':"G", 'fg':"brightblue", 'text':"Lost soul", 'sort':1},
{'chr':"G", 'fg':"brightgreen", 'text':"Spirit troll", 'sort':1},
{'chr':"G", 'fg':"brown", 'text':"Moaning spirit", 'sort':1},
{'chr':"G", 'fg':"brown", 'text':"Spectre", 'sort':1},
{'chr':"G", 'fg':"darkgray", 'text':"Shade", 'sort':1},
{'chr':"G", 'fg':"darkgray", 'text':"Shadow", 'sort':1},
{'chr':"G", 'fg':"gray", 'text':"Poltergeist", 'sort':1},
{'chr':"G", 'fg':"green", 'text':"Green glutton ghost", 'sort':1},
{'chr':"G", 'fg':"magenta", 'text':"Phantom", 'sort':1},
{'chr':"G", 'fg':"orange", 'text':"Dread", 'sort':1},
{'chr':"G", 'fg':"orange", 'text':"Dread", 'sort':1},
{'chr':"G", 'fg':"orange", 'text':"Tselakus, the Dreadlord", 'sort':1},
{'chr':"G", 'fg':"red", 'text':"Dreadlord", 'sort':1},
{'chr':"G", 'fg':"white", 'text':"Ghost", 'sort':1},
{'chr':"G", 'fg':"yellow", 'text':"Dreadmaster", 'sort':1},
{'chr':"H", 'fg':"brown", 'text':"Griffon", 'sort':1},
{'chr':"H", 'fg':"brown", 'text':"Hippogriff", 'sort':1},
{'chr':"H", 'fg':"darkgray", 'text':"Black harpy", 'sort':1},
{'chr':"H", 'fg':"gray", 'text':"Minotaur", 'sort':1},
{'chr':"H", 'fg':"magenta", 'text':"Baphomet the Minotaur Lord", 'sort':1},
{'chr':"H", 'fg':"magenta", 'text':"Jabberwock", 'sort':1},
{'chr':"H", 'fg':"orange", 'text':"Gorgimaera", 'sort':1},
{'chr':"H", 'fg':"red", 'text':"Chimaera", 'sort':1},
{'chr':"H", 'fg':"white", 'text':"White harpy", 'sort':1},
{'chr':"H", 'fg':"yellow", 'text':"Manticore", 'sort':1},
{'chr':"I", 'fg':"brightgreen", 'text':"Giant fruit fly", 'sort':1},
{'chr':"I", 'fg':"darkgray", 'text':"Neekerbreeker", 'sort':1},
{'chr':"I", 'fg':"gray", 'text':"Giant flea", 'sort':1},
{'chr':"I", 'fg':"red", 'text':"Giant firefly", 'sort':1},
{'chr':"I", 'fg':"yellow", 'text':"Hummerhorn", 'sort':1},
{'chr':"J", 'fg':"brown", 'text':"Large brown snake", 'sort':1},
{'chr':"J", 'fg':"darkgray", 'text':"Black mamba", 'sort':1},
{'chr':"J", 'fg':"gray", 'text':"Large grey snake", 'sort':1},
{'chr':"J", 'fg':"green", 'text':"King cobra", 'sort':1},
{'chr':"J", 'fg':"orange", 'text':"Copperhead snake", 'sort':1},
{'chr':"J", 'fg':"red", 'text':"Rattlesnake", 'sort':1},
{'chr':"J", 'fg':"white", 'text':"Large white snake", 'sort':1},
{'chr':"J", 'fg':"yellow", 'text':"Large yellow snake", 'sort':1},
{'chr':"K", 'fg':"brown", 'text':"Killer brown beetle", 'sort':1},
{'chr':"K", 'fg':"darkgray", 'text':"Death watch beetle", 'sort':1},
{'chr':"K", 'fg':"green", 'text':"Killer stag beetle", 'sort':1},
{'chr':"K", 'fg':"magenta", 'text':"Killer iridescent beetle", 'sort':1},
{'chr':"K", 'fg':"orange", 'text':"Killer fire beetle", 'sort':1},
{'chr':"K", 'fg':"red", 'text':"Killer red beetle", 'sort':1},
{'chr':"K", 'fg':"white", 'text':"Killer white beetle", 'sort':1},
{'chr':"K", 'fg':"yellow", 'text':"Killer slicer beetle", 'sort':1},
{'chr':"L", 'fg':"brightblue", 'text':"Archlich", 'sort':1},
{'chr':"L", 'fg':"brown", 'text':"Demilich", 'sort':1},
{'chr':"L", 'fg':"darkgray", 'text':"Black reaver", 'sort':1},
{'chr':"L", 'fg':"magenta", 'text':"Vecna, the Emperor Lich", 'sort':1},
{'chr':"L", 'fg':"orange", 'text':"Lich", 'sort':1},
{'chr':"L", 'fg':"red", 'text':"Master lich", 'sort':1},
{'chr':"L", 'fg':"yellow", 'text':"Feagwath, the Undead Sorcerer", 'sort':1},
{'chr':"M", 'fg':"brightgreen", 'text':"7-headed hydra", 'sort':1},
{'chr':"M", 'fg':"brown", 'text':"2-headed hydra", 'sort':1},
{'chr':"M", 'fg':"green", 'text':"5-headed hydra", 'sort':1},
{'chr':"M", 'fg':"magenta", 'text':"The Lernaean Hydra", 'sort':1},
{'chr':"M", 'fg':"orange", 'text':"11-headed hydra", 'sort':1},
{'chr':"M", 'fg':"orange", 'text':"3-headed hydra", 'sort':1},
{'chr':"M", 'fg':"red", 'text':"9-headed hydra", 'sort':1},
{'chr':"M", 'fg':"yellow", 'text':"4-headed hydra", 'sort':1},
{'chr':"O", 'fg':"blue", 'text':"Ogre chieftain", 'sort':1},
{'chr':"O", 'fg':"brightgreen", 'text':"Ogre shaman", 'sort':1},
{'chr':"O", 'fg':"brown", 'text':"Cave ogre", 'sort':1},
{'chr':"O", 'fg':"brown", 'text':"Ogre", 'sort':1},
{'chr':"O", 'fg':"darkgray", 'text':"Black ogre", 'sort':1},
{'chr':"O", 'fg':"magenta", 'text':"Lokkak, the Ogre Chieftain", 'sort':1},
{'chr':"O", 'fg':"red", 'text':"Ogre mage", 'sort':1},
{'chr':"P", 'fg':"blue", 'text':"Cloud giant", 'sort':1},
{'chr':"P", 'fg':"brightblue", 'text':"Storm giant", 'sort':1},
{'chr':"P", 'fg':"brown", 'text':"Cyclops", 'sort':1},
{'chr':"P", 'fg':"brown", 'text':"Hill giant", 'sort':1},
{'chr':"P", 'fg':"darkgray", 'text':"Morgoth, Lord of Darkness", 'sort':1},
{'chr':"P", 'fg':"gray", 'text':"Atlas, the Titan", 'sort':1},
{'chr':"P", 'fg':"gray", 'text':"Stone giant", 'sort':1},
{'chr':"P", 'fg':"green", 'text':"Polyphemus, the Blind Cyclops", 'sort':1},
{'chr':"P", 'fg':"magenta", 'text':"Kronos, Lord of the Titans", 'sort':1},
{'chr':"P", 'fg':"orange", 'text':"Greater titan", 'sort':1},
{'chr':"P", 'fg':"red", 'text':"Fire giant", 'sort':1},
{'chr':"P", 'fg':"white", 'text':"Frost giant", 'sort':1},
{'chr':"P", 'fg':"yellow", 'text':"Lesser titan", 'sort':1},
{'chr':"Q", 'fg':"brightblue", 'text':"Master quylthulg", 'sort':1},
{'chr':"Q", 'fg':"brightgreen", 'text':"Greater draconic quylthulg", 'sort':1},
{'chr':"Q", 'fg':"brown", 'text':"Greater rotting quylthulg", 'sort':1},
{'chr':"Q", 'fg':"brown", 'text':"Rotting quylthulg", 'sort':1},
{'chr':"Q", 'fg':"green", 'text':"Draconic quylthulg", 'sort':1},
{'chr':"Q", 'fg':"magenta", 'text':"Nexus quylthulg", 'sort':1},
{'chr':"Q", 'fg':"magenta", 'text':"Qlzqqlzuup, the Emperor Quylthulg", 'sort':1},
{'chr':"Q", 'fg':"orange", 'text':"Greater demonic quylthulg", 'sort':1},
{'chr':"Q", 'fg':"red", 'text':"Demonic quylthulg", 'sort':1},
{'chr':"Q", 'fg':"yellow", 'text':"Quylthulg", 'sort':1},
{'chr':"R", 'fg':"blue", 'text':"Night lizard", 'sort':1},
{'chr':"R", 'fg':"brown", 'text':"Cave lizard", 'sort':1},
{'chr':"R", 'fg':"brown", 'text':"Rock lizard", 'sort':1},
{'chr':"R", 'fg':"darkgray", 'text':"Greater basilisk", 'sort':1},
{'chr':"R", 'fg':"gray", 'text':"Basilisk", 'sort':1},
{'chr':"R", 'fg':"green", 'text':"Giant green frog", 'sort':1},
{'chr':"R", 'fg':"magenta", 'text':"The Tarrasque", 'sort':1},
{'chr':"R", 'fg':"orange", 'text':"Salamander", 'sort':1},
{'chr':"R", 'fg':"red", 'text':"Giant red frog", 'sort':1},
{'chr':"R", 'fg':"yellow", 'text':"Giant salamander", 'sort':1},
{'chr':"S", 'fg':"blue", 'text':"Drider", 'sort':1},
{'chr':"S", 'fg':"brightblue", 'text':"Phase spider", 'sort':1},
{'chr':"S", 'fg':"brown", 'text':"Giant brown tick", 'sort':1},
{'chr':"S", 'fg':"brown", 'text':"Wood spider", 'sort':1},
{'chr':"S", 'fg':"darkgray", 'text':"Cave spider", 'sort':1},
{'chr':"S", 'fg':"darkgray", 'text':"Shelob, Spider of Darkness", 'sort':1},
{'chr':"S", 'fg':"darkgray", 'text':"Ungoliant, the Unlight", 'sort':1},
{'chr':"S", 'fg':"gray", 'text':"Giant grey scorpion", 'sort':1},
{'chr':"S", 'fg':"green", 'text':"Mirkwood spider", 'sort':1},
{'chr':"S", 'fg':"magenta", 'text':"Giant spider", 'sort':1},
{'chr':"S", 'fg':"orange", 'text':"Aranea", 'sort':1},
{'chr':"S", 'fg':"orange", 'text':"Giant fire tick", 'sort':1},
{'chr':"S", 'fg':"orange", 'text':"Giant tarantula", 'sort':1},
{'chr':"S", 'fg':"red", 'text':"Elder aranea", 'sort':1},
{'chr':"S", 'fg':"red", 'text':"Giant red scorpion", 'sort':1},
{'chr':"S", 'fg':"white", 'text':"Giant white tick", 'sort':1},
{'chr':"S", 'fg':"yellow", 'text':"Giant yellow scorpion", 'sort':1},
{'chr':"T", 'fg':"blue", 'text':"Ettin", 'sort':1},
{'chr':"T", 'fg':"brightblue", 'text':"Water troll", 'sort':1},
{'chr':"T", 'fg':"brightgreen", 'text':"Troll priest", 'sort':1},
{'chr':"T", 'fg':"brown", 'text':"Cave troll", 'sort':1},
{'chr':"T", 'fg':"brown", 'text':"Half-troll", 'sort':1},
{'chr':"T", 'fg':"darkgray", 'text':"Rogrog the Black Troll", 'sort':1},
{'chr':"T", 'fg':"gray", 'text':"Bert the Stone Troll", 'sort':1},
{'chr':"T", 'fg':"gray", 'text':"Bill the Stone Troll", 'sort':1},
{'chr':"T", 'fg':"gray", 'text':"Stone troll", 'sort':1},
{'chr':"T", 'fg':"gray", 'text':"Tom the Stone Troll", 'sort':1},
{'chr':"T", 'fg':"green", 'text':"Forest troll", 'sort':1},
{'chr':"T", 'fg':"magenta", 'text':"Troll chieftain", 'sort':1},
{'chr':"T", 'fg':"orange", 'text':"Algroth", 'sort':1},
{'chr':"T", 'fg':"red", 'text':"Eldrak", 'sort':1},
{'chr':"T", 'fg':"white", 'text':"Ice troll", 'sort':1},
{'chr':"T", 'fg':"yellow", 'text':"Olog", 'sort':1},
{'chr':"U", 'fg':"blue", 'text':"Pazuzu, Lord of Air", 'sort':1},
{'chr':"U", 'fg':"brightblue", 'text':"Horned Reaper", 'sort':1},
{'chr':"U", 'fg':"brightgreen", 'text':"Barbazu", 'sort':1},
{'chr':"U", 'fg':"brown", 'text':"Erinyes", 'sort':1},
{'chr':"U", 'fg':"brown", 'text':"Glabrezu", 'sort':1},
{'chr':"U", 'fg':"gray", 'text':"Osyluth", 'sort':1},
{'chr':"U", 'fg':"gray", 'text':"Vrock", 'sort':1},
{'chr':"U", 'fg':"green", 'text':"Hezrou", 'sort':1},
{'chr':"U", 'fg':"magenta", 'text':"Gothmog, the High Captain of Balrogs", 'sort':1},
{'chr':"U", 'fg':"magenta", 'text':"Greater Balrog", 'sort':1},
{'chr':"U", 'fg':"magenta", 'text':"Lesser Balrog", 'sort':1},
{'chr':"U", 'fg':"magenta", 'text':"Lungorthin, the Balrog of White Fire", 'sort':1},
{'chr':"U", 'fg':"magenta", 'text':"The Balrog of Moria", 'sort':1},
{'chr':"U", 'fg':"orange", 'text':"Bile Demon", 'sort':1},
{'chr':"U", 'fg':"orange", 'text':"Pit Fiend", 'sort':1},
{'chr':"U", 'fg':"red", 'text':"Nalfeshnee", 'sort':1},
{'chr':"U", 'fg':"white", 'text':"Gelugon", 'sort':1},
{'chr':"U", 'fg':"yellow", 'text':"Marilith", 'sort':1},
{'chr':"V", 'fg':"blue", 'text':"Vampire lord", 'sort':1},
{'chr':"V", 'fg':"gray", 'text':"Vampire", 'sort':1},
{'chr':"V", 'fg':"green", 'text':"Master vampire", 'sort':1},
{'chr':"V", 'fg':"magenta", 'text':"Thuringwethil, the Vampire Messenger", 'sort':1},
{'chr':"V", 'fg':"red", 'text':"Elder vampire", 'sort':1},
{'chr':"W", 'fg':"blue", 'text':"Grave wight", 'sort':1},
{'chr':"W", 'fg':"brightgreen", 'text':"Nether wraith", 'sort':1},
{'chr':"W", 'fg':"darkgray", 'text':"Adunaphel the Quiet", 'sort':1},
{'chr':"W", 'fg':"darkgray", 'text':"Akhorahil the Blind", 'sort':1},
{'chr':"W", 'fg':"darkgray", 'text':"Black wraith", 'sort':1},
{'chr':"W", 'fg':"darkgray", 'text':"Dwar, Dog Lord of Waw", 'sort':1},
{'chr':"W", 'fg':"darkgray", 'text':"Hoarmurath of Dir", 'sort':1},
{'chr':"W", 'fg':"darkgray", 'text':"Ji Indur Dawndeath", 'sort':1},
{'chr':"W", 'fg':"darkgray", 'text':"Khamul, the Black Easterling", 'sort':1},
{'chr':"W", 'fg':"darkgray", 'text':"Nightcrawler", 'sort':1},
{'chr':"W", 'fg':"darkgray", 'text':"Nightwalker", 'sort':1},
{'chr':"W", 'fg':"darkgray", 'text':"Nightwing", 'sort':1},
{'chr':"W", 'fg':"darkgray", 'text':"Ren the Unclean", 'sort':1},
{'chr':"W", 'fg':"darkgray", 'text':"The Witch-King of Angmar", 'sort':1},
{'chr':"W", 'fg':"darkgray", 'text':"Uvatha the Horseman", 'sort':1},
{'chr':"W", 'fg':"gray", 'text':"Grey wraith", 'sort':1},
{'chr':"W", 'fg':"green", 'text':"Forest wight", 'sort':1},
{'chr':"W", 'fg':"magenta", 'text':"Barrow wight", 'sort':1},
{'chr':"W", 'fg':"red", 'text':"Emperor wight", 'sort':1},
{'chr':"W", 'fg':"white", 'text':"White wraith", 'sort':1},
{'chr':"X", 'fg':"brown", 'text':"Umber hulk", 'sort':1},
{'chr':"X", 'fg':"brown", 'text':"Xorn", 'sort':1},
{'chr':"X", 'fg':"gray", 'text':"Xaren", 'sort':1},
{'chr':"Y", 'fg':"green", 'text':"Sasquatch", 'sort':1},
{'chr':"Y", 'fg':"white", 'text':"Yeti", 'sort':1},
{'chr':"Z", 'fg':"blue", 'text':"Energy hound", 'sort':1},
{'chr':"Z", 'fg':"brightblue", 'text':"Time hound", 'sort':1},
{'chr':"Z", 'fg':"brightgreen", 'text':"Ethereal hound", 'sort':1},
{'chr':"Z", 'fg':"brightgreen", 'text':"Nether hound", 'sort':1},
{'chr':"Z", 'fg':"brown", 'text':"Earth hound", 'sort':1},
{'chr':"Z", 'fg':"brown", 'text':"Impact hound", 'sort':1},
{'chr':"Z", 'fg':"darkgray", 'text':"Dark hound", 'sort':1},
{'chr':"Z", 'fg':"gray", 'text':"Gravity hound", 'sort':1},
{'chr':"Z", 'fg':"gray", 'text':"Inertia hound", 'sort':1},
{'chr':"Z", 'fg':"gray", 'text':"Water hound", 'sort':1},
{'chr':"Z", 'fg':"green", 'text':"Air hound", 'sort':1},
{'chr':"Z", 'fg':"magenta", 'text':"Aether hound", 'sort':1},
{'chr':"Z", 'fg':"magenta", 'text':"Chaos hound", 'sort':1},
{'chr':"Z", 'fg':"magenta", 'text':"Multi-hued hound", 'sort':1},
{'chr':"Z", 'fg':"magenta", 'text':"Nexus hound", 'sort':1},
{'chr':"Z", 'fg':"orange", 'text':"Light hound", 'sort':1},
{'chr':"Z", 'fg':"orange", 'text':"Plasma hound", 'sort':1},
{'chr':"Z", 'fg':"red", 'text':"Fire hound", 'sort':1},
{'chr':"Z", 'fg':"white", 'text':"Clear hound", 'sort':1},
{'chr':"Z", 'fg':"white", 'text':"Cold hound", 'sort':1},
{'chr':"Z", 'fg':"yellow", 'text':"Vibration hound", 'sort':1},
{ },
{'chr':"a", 'fg':"blue", 'text':"Giant blue ant", 'sort':1},
{'chr':"a", 'fg':"darkgray", 'text':"Giant black ant", 'sort':1},
{'chr':"a", 'fg':"gray", 'text':"Giant grey ant", 'sort':1},
{'chr':"a", 'fg':"gray", 'text':"Giant silver ant", 'sort':1},
{'chr':"a", 'fg':"gray", 'text':"Soldier ant", 'sort':1},
{'chr':"a", 'fg':"magenta", 'text':"The Queen Ant", 'sort':1},
{'chr':"a", 'fg':"orange", 'text':"Giant army ant", 'sort':1},
{'chr':"a", 'fg':"orange", 'text':"Giant fire ant", 'sort':1},
{'chr':"a", 'fg':"red", 'text':"Giant red ant", 'sort':1},
{'chr':"a", 'fg':"white", 'text':"Giant white ant", 'sort':1},
{'chr':"b", 'fg':"blue", 'text':"Blue dragon bat", 'sort':1},
{'chr':"b", 'fg':"brown", 'text':"Giant brown bat", 'sort':1},
{'chr':"b", 'fg':"brown", 'text':"Giant tan bat", 'sort':1},
{'chr':"b", 'fg':"darkgray", 'text':"Vampire bat", 'sort':1},
{'chr':"b", 'fg':"green", 'text':"Bat of Gorgoroth", 'sort':1},
{'chr':"b", 'fg':"magenta", 'text':"Disenchanter bat", 'sort':1},
{'chr':"b", 'fg':"orange", 'text':"Doombat", 'sort':1},
{'chr':"b", 'fg':"orange", 'text':"Fruit bat", 'sort':1},
{'chr':"b", 'fg':"red", 'text':"Red dragon bat", 'sort':1},
{'chr':"c", 'fg':"blue", 'text':"Metallic blue centipede", 'sort':1},
{'chr':"c", 'fg':"brown", 'text':"Stegocentipede", 'sort':1},
{'chr':"c", 'fg':"green", 'text':"Metallic green centipede", 'sort':1},
{'chr':"c", 'fg':"orange", 'text':"Carrion crawler", 'sort':1},
{'chr':"c", 'fg':"orange", 'text':"Carrion crawler", 'sort':1},
{'chr':"c", 'fg':"red", 'text':"Metallic red centipede", 'sort':1},
{'chr':"c", 'fg':"white", 'text':"Giant clear centipede", 'sort':1},
{'chr':"c", 'fg':"white", 'text':"Giant white centipede", 'sort':1},
{'chr':"c", 'fg':"yellow", 'text':"Giant yellow centipede", 'sort':1},
{'chr':"d", 'fg':"blue", 'text':"Baby blue dragon", 'sort':1},
{'chr':"d", 'fg':"blue", 'text':"Mature blue dragon", 'sort':1},
{'chr':"d", 'fg':"blue", 'text':"Young blue dragon", 'sort':1},
{'chr':"d", 'fg':"brightblue", 'text':"Law drake", 'sort':1},
{'chr':"d", 'fg':"brightgreen", 'text':"Shadow drake", 'sort':1},
{'chr':"d", 'fg':"brown", 'text':"Baby bronze dragon", 'sort':1},
{'chr':"d", 'fg':"brown", 'text':"Crystal drake", 'sort':1},
{'chr':"d", 'fg':"brown", 'text':"Mature bronze dragon", 'sort':1},
{'chr':"d", 'fg':"brown", 'text':"Young bronze dragon", 'sort':1},
{'chr':"d", 'fg':"gray", 'text':"Baby black dragon", 'sort':1},
{'chr':"d", 'fg':"gray", 'text':"Mature black dragon", 'sort':1},
{'chr':"d", 'fg':"gray", 'text':"Young black dragon", 'sort':1},
{'chr':"d", 'fg':"green", 'text':"Baby green dragon", 'sort':1},
{'chr':"d", 'fg':"green", 'text':"Mature green dragon", 'sort':1},
{'chr':"d", 'fg':"green", 'text':"Wyvern", 'sort':1},
{'chr':"d", 'fg':"green", 'text':"Young green dragon", 'sort':1},
{'chr':"d", 'fg':"magenta", 'text':"Baby multi-hued dragon", 'sort':1},
{'chr':"d", 'fg':"magenta", 'text':"Balance drake", 'sort':1},
{'chr':"d", 'fg':"magenta", 'text':"Chaos drake", 'sort':1},
{'chr':"d", 'fg':"magenta", 'text':"Kavlax the Many-Headed", 'sort':1},
{'chr':"d", 'fg':"magenta", 'text':"Mature multi-hued dragon", 'sort':1},
{'chr':"d", 'fg':"magenta", 'text':"Young multi-hued dragon", 'sort':1},
{'chr':"d", 'fg':"orange", 'text':"Ethereal drake", 'sort':1},
{'chr':"d", 'fg':"orange", 'text':"Pseudo-dragon", 'sort':1},
{'chr':"d", 'fg':"red", 'text':"Baby red dragon", 'sort':1},
{'chr':"d", 'fg':"red", 'text':"Mature red dragon", 'sort':1},
{'chr':"d", 'fg':"red", 'text':"Young red dragon", 'sort':1},
{'chr':"d", 'fg':"white", 'text':"Baby white dragon", 'sort':1},
{'chr':"d", 'fg':"white", 'text':"Mature white dragon", 'sort':1},
{'chr':"d", 'fg':"white", 'text':"Young white dragon", 'sort':1},
{'chr':"d", 'fg':"yellow", 'text':"Baby gold dragon", 'sort':1},
{'chr':"d", 'fg':"yellow", 'text':"Mature gold dragon", 'sort':1},
{'chr':"d", 'fg':"yellow", 'text':"Young gold dragon", 'sort':1},
{'chr':"e", 'fg':"blue", 'text':"Beholder hive-mother", 'sort':1},
{'chr':"e", 'fg':"brightblue", 'text':"Spectator", 'sort':1},
{'chr':"e", 'fg':"brown", 'text':"Beholder", 'sort':1},
{'chr':"e", 'fg':"brown", 'text':"Undead beholder", 'sort':1},
{'chr':"e", 'fg':"darkgray", 'text':"Gauth", 'sort':1},
{'chr':"e", 'fg':"green", 'text':"Evil eye", 'sort':1},
{'chr':"e", 'fg':"magenta", 'text':"Disenchanter eye", 'sort':1},
{'chr':"e", 'fg':"magenta", 'text':"Omarax, the Eye Tyrant", 'sort':1},
{'chr':"e", 'fg':"orange", 'text':"Floating eye", 'sort':1},
{'chr':"e", 'fg':"orange", 'text':"Radiation eye", 'sort':1},
{'chr':"e", 'fg':"red", 'text':"Bloodshot eye", 'sort':1},
{'chr':"f", 'fg':"brown", 'text':"Panther", 'sort':1},
{'chr':"f", 'fg':"brown", 'text':"Scrawny cat", 'sort':1},
{'chr':"f", 'fg':"brown", 'text':"Wild cat", 'sort':1},
{'chr':"f", 'fg':"darkgray", 'text':"Displacer beast", 'sort':1},
{'chr':"f", 'fg':"magenta", 'text':"The Cat Lord", 'sort':1},
{'chr':"f", 'fg':"orange", 'text':"Tiger", 'sort':1},
{'chr':"f", 'fg':"yellow", 'text':"Sabre-tooth tiger", 'sort':1},
{'chr':"g", 'fg':"brightblue", 'text':"Mithril golem", 'sort':1},
{'chr':"g", 'fg':"brightgreen", 'text':"Colossus", 'sort':1},
{'chr':"g", 'fg':"brown", 'text':"Clay golem", 'sort':1},
{'chr':"g", 'fg':"brown", 'text':"Eog golem", 'sort':1},
{'chr':"g", 'fg':"darkgray", 'text':"Bone golem", 'sort':1},
{'chr':"g", 'fg':"darkgray", 'text':"Pukelman", 'sort':1},
{'chr':"g", 'fg':"gray", 'text':"Iron golem", 'sort':1},
{'chr':"g", 'fg':"gray", 'text':"Stone golem", 'sort':1},
{'chr':"g", 'fg':"green", 'text':"Drolem", 'sort':1},
{'chr':"g", 'fg':"orange", 'text':"Bronze golem", 'sort':1},
{'chr':"g", 'fg':"orange", 'text':"Flesh golem", 'sort':1},
{'chr':"g", 'fg':"red", 'text':"Silent watcher", 'sort':1},
{'chr':"g", 'fg':"yellow", 'text':"Colbran", 'sort':1},
{'chr':"h", 'fg':"blue", 'text':"Scruffy looking hobbit", 'sort':1},
{'chr':"h", 'fg':"brightblue", 'text':"Fundin Bluecloak", 'sort':1},
{'chr':"h", 'fg':"brightblue", 'text':"Smeagol", 'sort':1},
{'chr':"h", 'fg':"brightgreen", 'text':"Dark elven druid", 'sort':1},
{'chr':"h", 'fg':"brown", 'text':"Bullroarer the Hobbit", 'sort':1},
{'chr':"h", 'fg':"brown", 'text':"Dark elven warrior", 'sort':1},
{'chr':"h", 'fg':"darkgray", 'text':"Dark elf", 'sort':1},
{'chr':"h", 'fg':"darkgray", 'text':"Eol, the Dark Elf", 'sort':1},
{'chr':"h", 'fg':"darkgray", 'text':"Maeglin, the Traitor of Gondolin", 'sort':1},
{'chr':"h", 'fg':"gray", 'text':"Dark elven lord", 'sort':1},
{'chr':"h", 'fg':"green", 'text':"Dark elven priest", 'sort':1},
{'chr':"h", 'fg':"magenta", 'text':"Mind flayer", 'sort':1},
{'chr':"h", 'fg':"orange", 'text':"Dark elven sorcerer", 'sort':1},
{'chr':"h", 'fg':"orange", 'text':"Ibun, Son of Mim", 'sort':1},
{'chr':"h", 'fg':"orange", 'text':"Khim, Son of Mim", 'sort':1},
{'chr':"h", 'fg':"orange", 'text':"Mim, Betrayer of Turin", 'sort':1},
{'chr':"h", 'fg':"red", 'text':"Dark elven mage", 'sort':1},
{'chr':"h", 'fg':"red", 'text':"Gnome mage", 'sort':1},
{'chr':"h", 'fg':"red", 'text':"Gnome mage", 'sort':1},
{'chr':"h", 'fg':"white", 'text':"Farmer Maggot", 'sort':1},
{'chr':"h", 'fg':"yellow", 'text':"Nar, the Dwarf", 'sort':1},
{'chr':"i", 'fg':"blue", 'text':"Blue icky thing", 'sort':1},
{'chr':"i", 'fg':"gray", 'text':"Blubbering icky thing", 'sort':1},
{'chr':"i", 'fg':"gray", 'text':"Grey icky thing", 'sort':1},
{'chr':"i", 'fg':"green", 'text':"Green icky thing", 'sort':1},
{'chr':"i", 'fg':"red", 'text':"Bloodshot icky thing", 'sort':1},
{'chr':"i", 'fg':"white", 'text':"Clear icky thing", 'sort':1},
{'chr':"i", 'fg':"white", 'text':"White icky thing", 'sort':1},
{'chr':"j", 'fg':"blue", 'text':"Blue jelly", 'sort':1},
{'chr':"j", 'fg':"blue", 'text':"Blue ooze", 'sort':1},
{'chr':"j", 'fg':"brightgreen", 'text':"Gelatinous cube", 'sort':1},
{'chr':"j", 'fg':"brown", 'text':"Ochre jelly", 'sort':1},
{'chr':"j", 'fg':"brown", 'text':"Rot jelly", 'sort':1},
{'chr':"j", 'fg':"darkgray", 'text':"Black ooze", 'sort':1},
{'chr':"j", 'fg':"darkgray", 'text':"Black pudding", 'sort':1},
{'chr':"j", 'fg':"gray", 'text':"Acidic cytoplasm", 'sort':1},
{'chr':"j", 'fg':"gray", 'text':"Silver jelly", 'sort':1},
{'chr':"j", 'fg':"green", 'text':"Green jelly", 'sort':1},
{'chr':"j", 'fg':"green", 'text':"Green ooze", 'sort':1},
{'chr':"j", 'fg':"magenta", 'text':"Grape jelly", 'sort':1},
{'chr':"j", 'fg':"orange", 'text':"Spotted jelly", 'sort':1},
{'chr':"j", 'fg':"red", 'text':"Red jelly", 'sort':1},
{'chr':"j", 'fg':"white", 'text':"White jelly", 'sort':1},
{'chr':"j", 'fg':"yellow", 'text':"Yellow jelly", 'sort':1},
{'chr':"k", 'fg':"blue", 'text':"Large kobold", 'sort':1},
{'chr':"k", 'fg':"brightgreen", 'text':"Kobold", 'sort':1},
{'chr':"k", 'fg':"gray", 'text':"Kobold archer", 'sort':1},
{'chr':"k", 'fg':"magenta", 'text':"Mughash the Kobold Lord", 'sort':1},
{'chr':"k", 'fg':"red", 'text':"Kobold shaman", 'sort':1},
{'chr':"k", 'fg':"yellow", 'text':"Small kobold", 'sort':1},
{'chr':"l", 'fg':"darkgray", 'text':"Giant black louse", 'sort':1},
{'chr':"l", 'fg':"white", 'text':"Giant white louse", 'sort':1},
{'chr':"m", 'fg':"blue", 'text':"Shimmering mold", 'sort':1},
{'chr':"m", 'fg':"brown", 'text':"Brown mold", 'sort':1},
{'chr':"m", 'fg':"darkgray", 'text':"Death mold", 'sort':1},
{'chr':"m", 'fg':"gray", 'text':"Grey mold", 'sort':1},
{'chr':"m", 'fg':"green", 'text':"Green mold", 'sort':1},
{'chr':"m", 'fg':"magenta", 'text':"Disenchanter mold", 'sort':1},
{'chr':"m", 'fg':"orange", 'text':"Hairy mold", 'sort':1},
{'chr':"m", 'fg':"red", 'text':"Red mold", 'sort':1},
{'chr':"m", 'fg':"yellow", 'text':"Yellow mold", 'sort':1},
{'chr':"n", 'fg':"brightblue", 'text':"Guardian naga", 'sort':1},
{'chr':"n", 'fg':"darkgray", 'text':"Black naga", 'sort':1},
{'chr':"n", 'fg':"green", 'text':"Green naga", 'sort':1},
{'chr':"n", 'fg':"magenta", 'text':"Medusa, the Gorgon", 'sort':1},
{'chr':"n", 'fg':"red", 'text':"Red naga", 'sort':1},
{'chr':"n", 'fg':"white", 'text':"Spirit naga", 'sort':1},
{'chr':"o", 'fg':"blue", 'text':"Lugdush, the Uruk", 'sort':1},
{'chr':"o", 'fg':"blue", 'text':"Ugluk, the Uruk", 'sort':1},
{'chr':"o", 'fg':"brightblue", 'text':"Uruk", 'sort':1},
{'chr':"o", 'fg':"brightgreen", 'text':"Cave orc", 'sort':1},
{'chr':"o", 'fg':"brown", 'text':"Hill orc", 'sort':1},
{'chr':"o", 'fg':"brown", 'text':"Snaga", 'sort':1},
{'chr':"o", 'fg':"darkgray", 'text':"Black orc", 'sort':1},
{'chr':"o", 'fg':"gray", 'text':"Half-orc", 'sort':1},
{'chr':"o", 'fg':"green", 'text':"Gorbag, the Orc Captain", 'sort':1},
{'chr':"o", 'fg':"green", 'text':"Shagrat, the Orc Captain", 'sort':1},