-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappImpossible.js
More file actions
2539 lines (2524 loc) · 108 KB
/
appImpossible.js
File metadata and controls
2539 lines (2524 loc) · 108 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// "": [{characterName: "",
// ethnicityTitle: "",
// nationalityTitle: "",
// fightingTitle: "",
// genderTitle: "",
// speciesTitle: "",
// bornTitle: "",
// diedTitle: "",
// infoTitle: "",
// addInfoTitle: "",
// pictureTitle: "<img src='characterPictures/'> </img>",
// wikiLink: "<a href='' class='ATLALink'> Avatar Wiki</a>"}],
// Variable Declartion Area
const initialSelection = SelectaCharacter.textContent;
const initialID = SelectaCharacter;
var currentID = initialID;
var currentSelection = currentID.textContent;
document.getElementById("dropDownMain").innerHTML = currentSelection;
guessCount = localStorage.getItem("bendleImpossible_guessCount");
characterSelect = localStorage.getItem("bendleImpossible_Character");
// Character dictionary
const characterDictionary = {
"Aang": [{characterName: "Aang",
ethnicityTitle:"Air Nomad",
nationalityTitle: "Southern Air Temple",
fightingTitle: "Airbending",
genderTitle:"Man",
speciesTitle:"Human",
bornTitle: "12 BG",
diedTitle: "153 AG",
infoTitle: "Air Acolytes, Air Nomads, Team Avatar",
addInfoTitle: "Co-founder of the United Republic of Nations, Fully Realised Avatar",
pictureTitle: "<img src='characterPictures/AangPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Aang' class='ATLALink' target='_blank'> Avatar Wiki</a>"}],
"Aiwei": [{characterName: "Aiwei",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Zaofu, Earth Kingdom",
fightingTitle: "Earthbending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Metal Clan, Red Lotus",
addInfoTitle: "Truth Seer",
pictureTitle: "<img src='characterPictures/AiweiPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Aiwei' class='ATLALink'> Avatar Wiki</a>"}],
"Amon": [{characterName: "Amon",
ethnicityTitle: "Water Tribe",
nationalityTitle: "Northern Water Tribe",
fightingTitle: "Waterbending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "130 AG",
diedTitle: "170 AG",
infoTitle: "Equalists, Northern Water Tribe",
addInfoTitle: "Bloodbending master, United Republic fugitive",
pictureTitle: "<img src='characterPictures/AmonPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Amon' class='ATLALink'> Avatar Wiki</a>"}],
"Appa": [{characterName: "Appa",
ethnicityTitle: "Air Nomad",
nationalityTitle: "Eastern Air Temple",
fightingTitle: "Airbending",
genderTitle:"Male",
speciesTitle:"Flying Bison",
bornTitle: "Unknown",
diedTitle: "Unknown",
infoTitle: "Air Nomads, Team Avatar",
addInfoTitle: "Aang's sky bison",
pictureTitle: "<img src='characterPictures/AppaPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Appa' class='ATLALink' target='_blank'> Avatar Wiki</a>"}],
"Arnook": [{characterName: "Arnook",
ethnicityTitle: "Water Tribe",
nationalityTitle: "Agna Qel'a, Northern Water Tribe",
fightingTitle: "Water Tribe weapons",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "50 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Chief of the Northern and Southern Water Tribe",
addInfoTitle: "Northern Water Tribe",
pictureTitle: "<img src='characterPictures/ArnookPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Arnook' class='ATLALink'> Avatar Wiki</a>"}],
"Asami Sato": [{characterName: "Asami Sato",
ethnicityTitle: "Fire Nation",
nationalityTitle: "Republic City, United Republic",
fightingTitle: "Hand-to-hand combat",
genderTitle:"Woman",
speciesTitle:"Human",
bornTitle: "152 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Future Industries, Sato Family, Team Avatar",
addInfoTitle: "CEO of Future Industries, Private in the Earth Empire military",
pictureTitle: "<img src='characterPictures/AsamiSatoPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Asami_Sato' class='ATLALink' target='_blank'> Avatar Wiki</a>"}],
"Azula": [{characterName: "Azula",
ethnicityTitle: "Fire Nation",
nationalityTitle: "Fire Nation Capital, Fire Nation",
fightingTitle: "Firebending",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "85 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Azula's Team, Dai Li, Fire Nation Royal Family",
addInfoTitle: "Crown Princess of the Fire Nation, Head of the Dai Li",
pictureTitle: "<img src='characterPictures/AzulaPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Azula' class='ATLALink' target='_blank'> Avatar Wiki</a>"}],
"Azulon": [{characterName: "Azulon",
ethnicityTitle: "Fire Nation",
nationalityTitle: "Fire Nation Capital, Fire Nation",
fightingTitle: "Firebending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "0 AG",
diedTitle: "95 AG",
infoTitle: "Fire Nation Royal Family",
addInfoTitle: "Crown Prince of the Fire Nation",
pictureTitle: "<img src='characterPictures/AzulonPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Azulon' class='ATLALink'> Avatar Wiki</a>"}],
"Baatar": [{characterName: "Baatar",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Beifong Family, Metal Clan",
addInfoTitle: "Architect of Zaofu",
pictureTitle: "<img src='characterPictures/BaatarPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Baatar' class='ATLALink'> Avatar Wiki</a>"}],
"Baatar Jr": [{characterName: "Baatar Jr",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Zaofu, Earth Kingdom",
fightingTitle: "Mecha suit",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Beifong Family, Metal Clan",
addInfoTitle: "Engineer of Zaofu",
pictureTitle: "<img src='characterPictures/BaatarJrPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Baatar_Jr.' class='ATLALink'> Avatar Wiki</a>"}],
"Bato": [{characterName: "Bato",
ethnicityTitle: "Water Tribe",
nationalityTitle: "Wolf Cove, Southern Water Tribe",
fightingTitle: "Water Tribe Weapons",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Southern Water Tribe",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/BatoPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Bato' class='ATLALink'> Avatar Wiki</a>"}],
"The Big Bad Hippo": [{characterName: "The Big Bad Hippo",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Gaoling, Earth Kingdom",
fightingTitle: "Earthbending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Earth Rumble",
addInfoTitle: "Earth Kingdom soldier, Professional earthbending fighter",
pictureTitle: "<img src='characterPictures/TheBigBadHippoPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/The_Big_Bad_Hippo' class='ATLALink'> Avatar Wiki</a>"}],
"Bolin": [{characterName: "Bolin",
ethnicityTitle: "Earth Kingdom, Fire Nation",
nationalityTitle: "Republic City, United Republic",
fightingTitle: "Earthbending",
genderTitle:"Man",
speciesTitle:"Human",
bornTitle: "154 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Triple Threat Triad, Fire Ferrets, Team Avatar",
addInfoTitle: "Pro-bender, Actor, Coporal in the Earth Empire",
pictureTitle: "<img src='characterPictures/BolinPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Bolin' class='ATLALink' target='_blank'> Avatar Wiki</a>"}],
"Bosco": [{characterName: "Bosco",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Eastern coast, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Male",
speciesTitle: "Bear",
bornTitle: "Unknown",
diedTitle: "Before 171 AG",
infoTitle: "Earth Kingdom",
addInfoTitle: "Earth King Kuei's pet",
pictureTitle: "<img src='characterPictures/BoscoPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Bosco' class='ATLALink'> Avatar Wiki</a>"}],
"The Boulder": [{characterName: "The Boulder",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Goaling, Earth Kingdom",
fightingTitle: "Earthbending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Earth Rumble",
addInfoTitle: "Professional earthbending fighter, Earth Kingdom soldier",
pictureTitle: "<img src='characterPictures/TheBoulderPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/The_Boulder' class='ATLALink'> Avatar Wiki</a>"}],
"Bumi": [{characterName: "Bumi",
ethnicityTitle: "Air Nomad, Water Tribe",
nationalityTitle: "United Republic",
fightingTitle: "Airbending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Air Nation, United Forces",
addInfoTitle: "Military official",
pictureTitle: "<img src='characterPictures/BumiPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Bumi' class='ATLALink'> Avatar Wiki</a>"}],
"Bumi (King of Omashu)": [{characterName: "Bumi (King of Omashu)",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Omashu, Earth Kingdom",
fightingTitle: "Earthbending",
genderTitle:"Man",
speciesTitle:"Human",
bornTitle: "12 BG",
diedTitle: "Between 102 and 124 AG",
infoTitle: "King of Omashu, Order of the White Lotus",
addInfoTitle: "High-ranking member of the Order of the White Lotus",
pictureTitle: "<img src='characterPictures/KingBumiPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Bumi_(King_of_Omashu)' class='ATLALink' target='_blank'> Avatar Wiki</a>"}],
"Cabbage Merchant": [{characterName: "Cabbage Merchant",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Earth Kingdom",
fightingTitle: "Unknown",
genderTitle:"Man",
speciesTitle:"Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Merchant of cabbage, Cabbage Corp",
addInfoTitle: "Founder of Cabbage Corp",
pictureTitle: "<img src='characterPictures/CabbageMerchantPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Cabbage_merchant' class='ATLALink' target='_blank'> Avatar Wiki</a>"}],
"Chit Sang": [{characterName: "Chit Sang",
ethnicityTitle: "Fire Nation",
nationalityTitle: "Fire Nation",
fightingTitle: "Firebending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Fugitive",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/ChitSangPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Chit_Sang' class='ATLALink'> Avatar Wiki</a>"}],
"Chong": [{characterName: "Chong",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Trustfully in Love",
addInfoTitle: "Nomad",
pictureTitle: "<img src='characterPictures/ChongPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Chong' class='ATLALink'> Avatar Wiki</a>"}],
"Combustion Man": [{characterName: "Combustion Man",
ethnicityTitle: "Unknown",
nationalityTitle: "Fire Nation",
fightingTitle: "Combustionbending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "100 AG",
infoTitle: "Assassin",
addInfoTitle: "Sparky Sparky Boom Man",
pictureTitle: "<img src='characterPictures/CombustionManPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Combustion_Man' class='ATLALink'> Avatar Wiki</a>"}],
"Desna and Eska": [{characterName: "Desna and Eska",
ethnicityTitle: "Water Tribe",
nationalityTitle: "Agna Qel'a, Northern Water Tribe",
fightingTitle: "Waterbending",
genderTitle: "Man and Woman",
speciesTitle: "Human",
bornTitle: "155 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Chiefs of the Northern Water Tribe",
addInfoTitle: "Tribal Princess of the Northern Water Tribe",
pictureTitle: "<img src='characterPictures/DesnaandEskaPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Desna_and_Eska' class='ATLALink'> Avatar Wiki</a>"}],
"Dock/Xu/Bushi": [{characterName: "Dock/Xu/Bushi",
ethnicityTitle: "Fire Nation",
nationalityTitle: "Jang Hui, Fire Nation",
fightingTitle: "Unknown",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Ferryman, shopkeeper, river cleaner",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/DockXuBushiPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Dock/Xu/Bushi' class='ATLALink'> Avatar Wiki</a>"}],
"The Duke": [{characterName: "The Duke",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "91 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Freedom Fighters",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/TheDukePicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/The_Duke' class='ATLALink'> Avatar Wiki</a>"}],
"Fang": [{characterName: "Fang",
ethnicityTitle: "Fire Nation",
nationalityTitle: "Fire Nation",
fightingTitle: "Firebending",
genderTitle: "He/him",
speciesTitle: "Dragon",
bornTitle: "Unknown",
diedTitle: "12 BG",
infoTitle: "Spirit World",
addInfoTitle: "Roku's dragon",
pictureTitle: "<img src='characterPictures/FangPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Fang' class='ATLALink'> Avatar Wiki</a>"}],
"Fisherman": [{characterName: "Fisherman",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Harbour Town, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Fisherman",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/FishermanPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Fisherman' class='ATLALink'> Avatar Wiki</a>"}],
"Fisherman's Wife": [{characterName: "Fisherman's Wife",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Harbour Town, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Fish hauler",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/Fisherman'sWifePicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Fisherman%27s_wife' class='ATLALink'> Avatar Wiki</a>"}],
"Flopsie": [{characterName: "Flopsie",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Omashu, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Male",
speciesTitle: "Goat Gorilla",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "King Bumi's pet",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/FlopsiePicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Flopsie' class='ATLALink'> Avatar Wiki</a>"}],
"Foaming mouth guy": [{characterName: "Foaming mouth guy",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "kyoshi Island, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Possibly the biggest fan of the Avatar",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/FoamingmouthguyPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Foaming_mouth_guy' class='ATLALink'> Avatar Wiki</a>"}],
"Ginger": [{characterName: "Ginger",
ethnicityTitle: "Unknown",
nationalityTitle: "Unknown",
fightingTitle: "Unknown",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown",
infoTitle: "Actress",
addInfoTitle: "Varrimovers International",
pictureTitle: "<img src='characterPictures/GingerPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Ginger' class='ATLALink'> Avatar Wiki</a>"}],
"Gun": [{characterName: "Gun",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Ba Sing Se, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Government official",
addInfoTitle: "Grand Secretariat of Ba Sing Se",
pictureTitle: "<img src='characterPictures/GunPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Gun' class='ATLALink'> Avatar Wiki</a>"}],
"Gyatso": [{characterName: "Gyatso",
ethnicityTitle: "Air Nomad",
nationalityTitle: "Southern Air Temple",
fightingTitle: "Airbending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "0 AG",
infoTitle: "Air Nomad, Council of Elders",
addInfoTitle: "Airbending instructor, Council Elder, High Monk",
pictureTitle: "<img src='characterPictures/GyatsoPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Gyatso' class='ATLALink'> Avatar Wiki</a>"}],
"Hahn": [{characterName: "Hahn",
ethnicityTitle: "Water Tribe",
nationalityTitle: "Agna Qel'a, Northern Water Tribe",
fightingTitle: "Water Tribe Weapons",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "82 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Solider",
addInfoTitle: "Betrothed to Princess Yue",
pictureTitle: "<img src='characterPictures/HahnPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Hahn' class='ATLALink'> Avatar Wiki</a>"}],
"Hakoda": [{characterName: "Hakoda",
ethnicityTitle: "Water Tribe",
nationalityTitle: "Wolf Cove, Southern Water Tribe",
fightingTitle: "Water Tribe Weapons",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknwon/Alive",
infoTitle: "Head Chieftain of the Southern Water Tribe",
addInfoTitle: "Chieftain of Wolf Cove",
pictureTitle: "<img src='characterPictures/HakodaPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Hakoda' class='ATLALink'> Avatar Wiki</a>"}],
"Hama": [{characterName: "Hama",
ethnicityTitle: "Water Tribe",
nationalityTitle: "Wolf Cove, Southern Water Tribe",
fightingTitle: "Waterbending",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknwon/Alive",
infoTitle: "Inventor of bloodbending",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/HamaPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Hama' class='ATLALink'> Avatar Wiki</a>"}],
"Haru": [{characterName: "Haru",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Mining village, Earth Kingdom",
fightingTitle: "Earthbending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Hakoda's forces",
addInfoTitle: "unknown",
pictureTitle: "<img src='characterPictures/HaruPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Haru' class='ATLALink'> Avatar Wiki</a>"}],
"Haru's mother": [{characterName: "Haru's mother",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Mining village, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Shopkeeper",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/Haru'sMotherPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Haru%27s_mother' class='ATLALink'> Avatar Wiki</a>"}],
"Head of the Dai Li": [{characterName: "Head of the Dai Li",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Ba Sing Se, Earth Kingdom",
fightingTitle: "Earthbending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Dai Li agent",
addInfoTitle: "Representative and spokesperson for Dai Li agents",
pictureTitle: "<img src='characterPictures/HeadoftheDaiLiPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Head_of_the_Dai_Li' class='ATLALink'> Avatar Wiki</a>"}],
"Hei Bai": [{characterName: "Hei Bai",
ethnicityTitle: "Unknown",
nationalityTitle: "Unknown",
fightingTitle: "Sonic Screams",
genderTitle: "He/him",
speciesTitle: "Spirit",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Forest Spirit",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/HeiBaiPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Hei_Bai' class='ATLALink'> Avatar Wiki</a>"}],
"Herbalist": [{characterName: "Herbalist",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Tau, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "20 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Herbalist",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/HerbalistPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Herbalist' class='ATLALink'> Avatar Wiki</a>"}],
"Hide": [{characterName: "Hide",
ethnicityTitle: "Fire Nation",
nationalityTitle: "Fire Nation",
fightingTitle: "Firebending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Student",
addInfoTitle: "Star pupil",
pictureTitle: "<img src='characterPictures/HidePicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Hide' class='ATLALink'> Avatar Wiki</a>"}],
"Hiroshi Sato": [{characterName: "Hiroshi Sato",
ethnicityTitle: "Fire Nation",
nationalityTitle: "Republic City, United Republic",
fightingTitle: "Technology",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "120 AG",
diedTitle: "174 AG",
infoTitle: "CEO of Future Industries",
addInfoTitle: "Equalist Commander",
pictureTitle: "<img src='characterPictures/HiroshiSatoPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Hiroshi_Sato' class='ATLALink'> Avatar Wiki</a>"}],
"Hope": [{characterName: "hope",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Ba Sing Se, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "100 AG",
diedTitle: "unknown/Alive",
infoTitle: "Newborn",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/HopePicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Hope' class='ATLALink'> Avatar Wiki</a>"}],
"How": [{characterName: "How",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Ba Sing Se, Earth Kingdom",
fightingTitle: "Earthbending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Leader of the Earth Kingdom military, Council of Five",
addInfoTitle: "Leader of the Council of Five",
pictureTitle: "<img src='characterPictures/HowPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/How' class='ATLALink'> Avatar Wiki</a>"}],
"Huan": [{characterName: "Huan",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Zaofu, Earth Kingdom",
fightingTitle: "Earthbending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Beifong family",
addInfoTitle: "Earth Empire prisoner",
pictureTitle: "<img src='characterPictures/HuanPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Huan' class='ATLALink'> Avatar Wiki</a>"}],
"Huu": [{characterName: "Huu",
ethnicityTitle: "Water Tribe",
nationalityTitle: "Foggy Swamp Tribe",
fightingTitle: "Waterbending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Protector of the Foggy Swamp",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/HuuPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Huu' class='ATLALink'> Avatar Wiki</a>"}],
"Ikki": [{characterName: "Ikki",
ethnicityTitle: "Air Nomad, Water Tribe",
nationalityTitle: "Republic City, United Republic",
fightingTitle: "Airbending",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "163 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Air Nation, Tenzin's family",
addInfoTitle: "Airbender-in-training",
pictureTitle: "<img src='characterPictures/IkkiPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Ikki' class='ATLALink'> Avatar Wiki</a>"}],
"Iknik Blackstone Varrick": [{characterName: "Iknik Blackstone Varrick",
ethnicityTitle: "Water Tribe",
nationalityTitle: "Southern Water Tribe",
fightingTitle: "Unknown",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Varrick Global Industries, ",
addInfoTitle: "Leader of the Southern Water Tribe Rebels",
pictureTitle: "<img src='characterPictures/IknikBlackstoneVarrickPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Iknik_Blackstone_Varrick' class='ATLALink'> Avatar Wiki</a>"}],
"Iroh": [{characterName: "Iroh",
ethnicityTitle: "Fire Nation",
nationalityTitle: "Fire Nation Capital, Fire Nation",
fightingTitle: "Firebending",
genderTitle:"Man",
speciesTitle:"Human",
bornTitle: "Unknown",
diedTitle: "Unknown",
infoTitle: "Fire Nation Royal Family, Jasmine Dragon, Order of the White Lotus",
addInfoTitle: "Finest Tea Brewer in Ba Sing-Se, Grand Lotus of the Order of the White Lotus, Jasmine Dragon teashop founder and owner",
pictureTitle: "<img src='characterPictures/IrohPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Iroh' class='ATLALink' target='_blank'> Avatar Wiki</a>"}],
"Iroh (United Forces General)": [{characterName: "Iroh (United Forces General)",
ethnicityTitle: "Fire Nation",
nationalityTitle: "Fire Nation",
fightingTitle: "Firebending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "134 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Fire Nation Royal Family, United Forces",
addInfoTitle: "General of the United Forces",
pictureTitle: "<img src='characterPictures/IrohUnitedForcesGeneralPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Iroh_(United_Forces_general)' class='ATLALink'> Avatar Wiki</a>"}],
"Izumi": [{characterName: "Izumi",
ethnicityTitle: "Fire Nation",
nationalityTitle: "Fire Nation Capital City, Fire Nation",
fightingTitle: "Unknown",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Fire Nation Royal Family",
addInfoTitle: "Crown Princess of the Fire Nation, Fire Lord",
pictureTitle: "<img src='characterPictures/IzumiPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Izumi' class='ATLALink'> Avatar Wiki</a>"}],
"Jee": [{characterName: "Jee",
ethnicityTitle: "Fire Nation",
nationalityTitle: "fire Nation",
fightingTitle: "Firebending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Fire Nation Navy",
addInfoTitle: "Lieutenant",
pictureTitle: "<img src='characterPictures/JeePicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Jee' class='ATLALink'> Avatar Wiki</a>"}],
"Jeong Jeong": [{characterName: "Jeong Jeong",
ethnicityTitle: "Fire Nation",
nationalityTitle: "Fire Nation",
fightingTitle: "Firebending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "39 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Fire Nation Navy Deserter, Order of the White Lotus",
addInfoTitle: "High-ranking member of the Order of the White Lotus",
pictureTitle: "<img src='characterPictures/JeongJeongPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Jeong_Jeong' class='ATLALink'> Avatar Wiki</a>"}],
"Jet": [{characterName: "Jet",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Earth Kingdom",
fightingTitle: "Swordsmanship",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "83 AG",
diedTitle: "100 AG",
infoTitle: "Freedom Fighters",
addInfoTitle: "Leader of the Freedom Fighters",
pictureTitle: "<img src='characterPictures/JetPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Jet' class='ATLALink'> Avatar Wiki</a>"}],
"Jin": [{characterName: "Jin",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Ba Sing Se, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Refugee",
addInfoTitle: "The tea shops best customer",
pictureTitle: "<img src='characterPictures/JinPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Jin' class='ATLALink'> Avatar Wiki</a>"}],
"Jinora": [{characterName: "Jinora",
ethnicityTitle: "Air Nomad, Water Tribe",
nationalityTitle: "Republic City, United Republic",
fightingTitle: "Airbending",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "160 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Air Nation, Tenzin's family",
addInfoTitle: "Airbending master",
pictureTitle: "<img src='characterPictures/JinoraPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Jinora' class='ATLALink'> Avatar Wiki</a>"}],
"Joo Dee": [{characterName: "Joo Dee",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Ba Sing Se, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Government official",
addInfoTitle: "Supreme Bureaucratic Administrator",
pictureTitle: "<img src='characterPictures/JooDeePicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Joo_Dee' class='ATLALink'> Avatar Wiki</a>"}],
"Juicy": [{characterName: "Juicy",
ethnicityTitle: "Air Nomad",
nationalityTitle: "Republic City, United Republic",
fightingTitle: "Airbending",
genderTitle: "Male",
speciesTitle: "Flying Bison",
bornTitle: "Unknown",
diedTitle: "unknown/Alive",
infoTitle: "Air Nation",
addInfoTitle: "Opal's Bison",
pictureTitle: "<img src='characterPictures/JuicyPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Juicy' class='ATLALink'> Avatar Wiki</a>"}],
"June": [{characterName: "June",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Unknown",
fightingTitle: "Whip",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Bounty Hunter",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/JunePicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/June' class='ATLALink'> Avatar Wiki</a>"}],
"Kahchi": [{characterName: "Kahchi",
ethnicityTitle: "Fire Nation",
nationalityTitle: "fire Nation",
fightingTitle: "Guan dao",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Fire Nation Military",
addInfoTitle: "Rough Rhino",
pictureTitle: "<img src='characterPictures/KahchiPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Kahchi' class='ATLALink'> Avatar Wiki</a>"}],
"Kai": [{characterName: "Kai",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Earth Kingdom",
fightingTitle: "Airbending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Air Nation",
addInfoTitle: "Airbender-in-training",
pictureTitle: "<img src='characterPictures/KaiPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Kai' class='ATLALink'> Avatar Wiki</a>"}],
"Kanna": [{characterName: "Kanna",
ethnicityTitle: "Water Tribe",
nationalityTitle: "Northern Water Tribe",
fightingTitle: "Unknown",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "19 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Tribe Elder",
addInfoTitle: "Gran Gran",
pictureTitle: "<img src='characterPictures/KannaPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Kanna' class='ATLALink'> Avatar Wiki</a>"}],
"Karu": [{characterName: "Karu",
ethnicityTitle: "Fire Nation",
nationalityTitle: "Bhanti, Fire Nation",
fightingTitle: "Unknown",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Sage",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/KaruPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Karu' class='ATLALink'> Avatar Wiki</a>"}],
"Katara": [{characterName: "Katara",
ethnicityTitle: "Water Tribe",
nationalityTitle: "Wolf Cove, Southern Water Tribe",
fightingTitle: "Waterbending",
genderTitle: "Woman",
speciesTitle:"Human",
bornTitle: "85 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Team Avatar, Water Tribe",
addInfoTitle: "Daughter of the Southern Water Tribe Head Chieftain, Member of the Southern Council of Elders",
pictureTitle: "<img src='characterPictures/KataraPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Katara' class='ATLALink' target='_blank'> Avatar Wiki</a>"}],
"Kay-fon": [{characterName: "Kay-fon",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Senlin Village, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Senlin Village Leader",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/Kay-fonPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Kay-fon' class='ATLALink'> Avatar Wiki</a>"}],
"Koh": [{characterName: "Koh",
ethnicityTitle: "Unknown",
nationalityTitle: "Unknown",
fightingTitle: "Unknown",
genderTitle: "He/him",
speciesTitle: "Spirit",
bornTitle: "Unknown",
diedTitle: "Unknown",
infoTitle: "Ancient Spirit",
addInfoTitle: "The Face Stealer",
pictureTitle: "<img src='characterPictures/KohPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Koh' class='ATLALink'> Avatar Wiki</a>"}],
"Koko": [{characterName: "Koko",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Kyoshi Island",
fightingTitle: "Unknown",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "91 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Suki's Village",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/KokoPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Koko' class='ATLALink'> Avatar Wiki</a>"}],
"Korra": [{characterName: "Korra",
ethnicityTitle: "Water Tribe",
nationalityTitle: "Wolf Cove, Southern Water Tribe",
fightingTitle: "Waterbending",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "153 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Southern Water Tribe, Fire Ferrets, Team Avatar",
addInfoTitle: "Daughter of the Southern Water Tribe chief, Fire Ferrets' waterbender, Fully realized Avatar",
pictureTitle: "<img src='characterPictures/KorraPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Korra' class='ATLALink' target='_blank'> Avatar Wiki</a>"}],
"Kuei": [{characterName: "Kuei",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Ba Sing Se, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown",
infoTitle: "52nd Earth King",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/KueiPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Kuei' class='ATLALink'> Avatar Wiki</a>"}],
"Kuruk": [{characterName: "Kuruk",
ethnicityTitle: "Water Tribe",
nationalityTitle: "Northern Water Tribe",
fightingTitle: "Waterbending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "345 BG",
diedTitle: "312 BG",
infoTitle: "Fully realised Avatar",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/KurukPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Kuruk' class='ATLALink'> Avatar Wiki</a>"}],
"Kuvira": [{characterName: "Kuvira",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Earth Kingdom",
fightingTitle: "Earthbending",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Earth Empire, Beifong Family",
addInfoTitle: "Commander of the Earth Empire",
pictureTitle: "<img src='characterPictures/KuviraPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Kuvira' class='ATLALink'> Avatar Wiki</a>"}],
"Kya": [{characterName: "Kya",
ethnicityTitle: "Air Nomad, Water Tribe",
nationalityTitle: "Southern Water Tribe",
fightingTitle: "Water Bending",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Southern Water Tribe",
addInfoTitle: "Waterbending master",
pictureTitle: "<img src='characterPictures/KyaPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Kya' class='ATLALink'> Avatar Wiki</a>"}],
"Kya (nonbender)": [{characterName: "Kya (nonbender)",
ethnicityTitle: "Water Tribe",
nationalityTitle: "Wolf Cove, Southern Water Tribe",
fightingTitle: "Unknown",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "94 AG",
infoTitle: "Wife of the tribal chief",
addInfoTitle: "Healer, Herbalist",
pictureTitle: "<img src='characterPictures/Kya(nonbender)Picture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Kya_(nonbender)' class='ATLALink'> Avatar Wiki</a>"}],
"Kyoshi": [{characterName: "Kyoshi",
ethnicityTitle: "Air Nomad, Earth Kingdom",
nationalityTitle: "Earth Kingdom",
fightingTitle: "Earthbending",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "312 BG",
diedTitle: "82 BG",
infoTitle: "Flying Opera Company, Kyoshi Island inhabitants",
addInfoTitle: "Founder of the Kyoshi Warriors and Dai Li, Fully realised Avatar",
pictureTitle: "<img src='characterPictures/KyoshiPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Kyoshi' class='ATLALink'> Avatar Wiki</a>"}],
"La": [{characterName: "La",
ethnicityTitle: "Unknown",
nationalityTitle: "Unknown",
fightingTitle: "Waterbending",
genderTitle: "Unknown",
speciesTitle: "Spirit",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Ocean Spirit",
addInfoTitle: "Water Tribe",
pictureTitle: "<img src='characterPictures/LaPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/La' class='ATLALink'> Avatar Wiki</a>"}],
"Lao Beifong": [{characterName: "Lao Beifong",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Gaoling, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Beifong family,Earthern Fire Industries",
addInfoTitle: "Co-owner of the Earthern Fire Refinery",
pictureTitle: "<img src='characterPictures/LaoBeifongPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Lao_Beifong' class='ATLALink'> Avatar Wiki</a>"}],
"Lee": [{characterName: "Lee",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Plains village, Earth Kingdom",
fightingTitle: "Unknown",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Lee Family Pig Farm",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/LeePicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Lee' class='ATLALink'> Avatar Wiki</a>"}],
"Lefty": [{characterName: "Lefty",
ethnicityTitle: "Air Nomad",
nationalityTitle: "Northern Air Temple",
fightingTitle: "Airbending",
genderTitle: "Male",
speciesTitle: "Flying bison",
bornTitle: "171 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Air Nation",
addInfoTitle: "Kai's Bison",
pictureTitle: "<img src='characterPictures/LeftyPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Lefty' class='ATLALink'> Avatar Wiki</a>"}],
"Lieutenant": [{characterName: "Lieutenant",
ethnicityTitle: "Unknown",
nationalityTitle: "Republic City, United Republic",
fightingTitle: "Eskrima",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "Unknown",
diedTitle: "Unknown/Alive",
infoTitle: "Equalists",
addInfoTitle: "Lieutenant",
pictureTitle: "<img src='characterPictures/LieutenantPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Lieutenant' class='ATLALink'> Avatar Wiki</a>"}],
"Lightning Bolt Zolt": [{characterName: "Lightning Bolt Zolt",
ethnicityTitle: "Fire Nation",
nationalityTitle: "Republic City, United Republic",
fightingTitle: "Firebending",
genderTitle: "Man",
speciesTitle: "Human",
bornTitle: "119 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Triple Threat Triad",
addInfoTitle: "Unknown",
pictureTitle: "<img src='characterPictures/LightningBoltZoltPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Lightning_Bolt_Zolt' class='ATLALink'> Avatar Wiki</a>"}],
"Lin Beifong": [{characterName: "Lin Beifong",
ethnicityTitle: "Earth Kingdom",
nationalityTitle: "Republic City, United Republic",
fightingTitle: "Earthbending",
genderTitle: "Woman",
speciesTitle: "Human",
bornTitle: "120 AG",
diedTitle: "Unknown/Alive",
infoTitle: "Republic City Police Department",
addInfoTitle: "Chief of Police",
pictureTitle: "<img src='characterPictures/LinBeifongPicture.webp'> </img>",
wikiLink: "<a href='https://avatar.fandom.com/wiki/Lin_Beifong' class='ATLALink'> Avatar Wiki</a>"}],
"Lo and Li": [{characterName: "Lo and Li",
ethnicityTitle: "Fire Nation",