This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
aoc_object_consts_unit.py
1502 lines (1501 loc) · 37.3 KB
/
aoc_object_consts_unit.py
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
UNITS = {
"Legionary": [1],
"Archer": [4],
"Hand Cannoneer": [5],
"Elite Skirmisher": [6],
"Skirmisher": [7],
"Longbowman": [8],
"Arrow": [9, 54, 97, 312, 315, 316, 317, 318, 319, 320, 321, 322, 328, 360, 363, 364, 365, 366, 372, 373, 375, 376,
377, 466, 475, 476, 477, 478, 485, 503, 504, 505, 507, 508, 509, 510, 511, 512, 514, 515, 516, 517, 518,
519, 520, 521, 522, 523, 524, 525, 1055, 1169, 1170, 1223],
"Archery Range": [10, 14, 87],
"Mangudai": [11],
"Barracks": [12, 20, 132, 498],
"Fishing Ship": [13],
"Junk": [15],
"Trade Cog": [17],
"Blacksmith": [18, 19, 103, 105],
"War Galley": [21],
"Crossbowman": [24],
"Teutonic Knight": [25],
"Dead crossbowman": [26],
"Monastery": [30, 31, 32, 104],
"Fortress": [33],
"Battering Ram": [35],
"Bombard Cannon": [36],
"Light Cavalry": [37, 546],
"Knight": [38],
"Cavalry Archer": [39],
"Cataphract": [40],
"Huskarl": [41, 759],
"Trebuchet": [42],
"Dock": [45, 47, 51, 133, 805, 806, 807, 808],
"Janissary": [46],
"Wild Boar": [48],
"Siege Workshop": [49, 150],
"Farm": [50],
"Royal Janissary": [52],
"Fish (Perch)": [53],
"Fisherman": [56, 57],
"Forage Bush": [59],
"Dolphin": [61, 452],
"Gate": [63, 64, 67, 78, 80, 81, 85, 88, 90, 91, 92, 95, 487, 488, 490, 491, 659, 660, 661, 662, 663, 664, 665, 666,
667, 668, 669, 670, 671, 672, 673, 674],
"Deer": [65, 333],
"Gold Mine": [66],
"Mill": [68, 129, 130, 131],
"Shore Fish": [69],
"House": [70, 463, 464, 465],
"Town Center": [71, 109, 141, 142, 481, 482, 483, 484, 597, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621],
"Palisade Wall": [72],
"Chu Ko Nu": [73],
"Militia": [74],
"Man-at-Arms": [75],
"Heavy Swordsman": [76],
"Long Swordsman": [77],
"Watch Tower": [79, 566],
"Castle": [82],
"Villager": [83, 293],
"Market": [84, 116, 137],
"Stable": [86, 101, 153],
"Dire Wolf": [89],
"Spearman": [93],
"Berserk": [94, 692],
"Hawk": [96],
"Stone Mine": [102],
"Trade Workshop": [110, 179],
"Dead knight": [111],
"Flare": [112, 274, 332],
"Stone Wall": [117],
"Builder": [118, 212],
"Fortified Palisade Wall": [119],
"Forager": [120, 354],
"Hunter": [122, 216],
"Lumberjack": [123, 218],
"Stone Miner": [124, 220],
"Monk": [125],
"Wolf": [126],
"Trade Cart": [128, 204],
"Rubble 1 x 1": [143, 863, 1065],
"Rubble 2 x 2": [144, 191, 192, 864],
"Rubble 3 x 3": [145, 865],
"Rubble 4 x 4": [146],
"Rubble 6 x 6": [147],
"Rubble 8 x 8": [148],
"Fortified Wall": [155],
"Repairer": [156, 222],
"Relic Cart": [159, 944],
"Richard the Lionheart": [160],
"The Black Prince": [161],
"Friar Tuck": [163],
"Sheriff of Nottingham": [164],
"Charlemagne": [165],
"Roland": [166],
"Belisarius": [167],
"Theodoric the Goth": [168],
"Aethelfirth": [169],
"Siegfried": [170],
"Erik the Red": [171],
"Tamerlane": [172],
"King Arthur": [173],
"Lancelot": [174],
"Gawain": [175],
"Mordred": [176],
"Archbishop": [177],
"Dead long swordman": [180],
"Condottiero": [184, 882],
"Slinger": [185],
"Flamethrower": [188],
"Fire Tower": [190],
"Vlad Dracula": [193],
"Kitabatake": [195],
"Minamoto": [196],
"Alexander Nevski": [197],
"El Cid": [198],
"Fish Trap": [199],
"Robin Hood": [200],
"Rabid Wolf": [202],
"VMDL": [206],
"Imperial Camel": [207],
"University": [209, 210],
"Farmer": [214, 259, 1192],
"Falcon": [221, 229, 1056],
"Aqueduct": [231],
"Woad Raider": [232],
"Guard Tower": [234],
"Keep": [235],
"Bombard Tower": [236],
"War Elephant": [239],
"Cracks": [241],
"Osman": [246, 381, 943],
"Pile of Stone": [248],
"Longboat": [250],
"Amphitheatre": [251],
"Pile of Gold": [252],
"Pile of Wood": [253],
"Pile of Food": [262],
"Colosseum": [263],
"Harbor": [264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 1189],
"Centurion": [275],
"Wonder": [276],
"Dead Fish Trap": [278],
"Scorpion": [279],
"Mangonel": [280],
"Throwing Axeman": [281],
"Mameluke": [282],
"Cavalier": [283],
"Tree TD": [284],
"Relic": [285],
"Monk with Relic": [286, 922, 1025],
"British Relic": [287],
"Byzantine Relic": [288],
"Chinese Relic": [289],
"Frankish Relic": [290],
"Samurai": [291],
"Gothic Relic": [292],
"Japanese Relic": [294],
"Persian Relic": [295],
"Saracen Relic": [296],
"Teutonic Relic": [297],
"Turkish Relic": [298],
"Bandit": [299],
"Grass Patch": [301],
"Bush": [302],
"Seagulls": [303],
"Bonfire": [304],
"Llama": [305],
"Black Tile": [306],
"Cuauhtemoc": [307, 633],
"Monk with Turkish Relic": [309],
"Mountain 1": [310],
"Mountain 2": [311],
"Camel": [329],
"Heavy Camel": [330],
"Trebuchet (Packed)": [331],
"Flowers 1": [334],
"Flowers 2": [335],
"Flowers 3": [336],
"Flowers 4": [337],
"Path 4": [338],
"Path 1": [339],
"Path 2": [340],
"Path 3": [341],
"Ruins": [345],
"Bamboo Forest Tree": [348],
"Oak Forest Tree": [349],
"Pine Forest Tree": [350],
"Palm Forest Tree": [351],
"Army Tent": [352, 1196, 1197, 1198, 1199, 1200],
"Dead Farm": [357],
"Pikeman": [358],
"Halberdier": [359],
"Nordic Swordsman": [361],
"City Wall": [370],
"Sea Rocks 1": [389],
"Pagoda": [390, 1201, 1202, 1203],
"Sea Rocks 2": [396],
"Sanchi Stupa": [397, 1216],
"Gol Gumbaz": [398, 1217],
"Tree A": [399],
"Tree B": [400],
"Tree C": [401],
"Tree D": [402],
"Tree E": [403],
"Tree F": [404],
"Tree G": [405],
"Tree H": [406],
"Tree I": [407],
"Tree J": [408],
"Tree K": [409],
"Tree L": [410],
"Forest Tree": [411],
"Snow Pine Tree": [413],
"Jungle Tree": [414],
"Stump": [415, 809],
"Cannon Galleon": [420],
"Capped Ram": [422],
"Charles Martel": [424],
"Francisco de Orellana": [425],
"Harald Hardraade": [426],
"Gonzalo Pizarro": [427],
"Hrolf the Ganger": [428],
"Frederick Barbarossa": [429],
"Joan the Maid": [430],
"William Wallace": [432],
"King": [434],
"Prithviraj": [437],
"Francesco Sforza": [439],
"Petard": [440],
"Hussar": [441],
"Galleon": [442],
"Poenari Castle": [445],
"Port": [446],
"Scout Cavalry": [448],
"Great Fish (Marlin)": [450, 451],
"Fish (Dorado)": [455],
"Fish (Salmon)": [456],
"Fish (Tuna)": [457],
"Fish (Snapper)": [458],
"Loot": [472],
"Two-Handed Swordsman": [473],
"Heavy Cavalry Archer": [474],
"Bear": [486],
"Arbalest": [492],
"Advanced Heavy Crossbowman": [493],
"Torch": [499],
"Dead pikeman": [501],
"Demolition Ship": [527],
"Heavy Demolition Ship": [528],
"Fire Ship": [529],
"Elite Longbowman": [530],
"Elite Throwing Axeman": [531],
"Fast Fire Ship": [532],
"Elite Longboat": [533],
"Elite Woad Raider": [534],
"Galley": [539],
"Heavy Scorpion": [542],
"Transport Ship": [545],
"Dead light cavalry": [547],
"Siege Ram": [548],
"Onager": [550],
"Elite Cataphract": [553],
"Elite Teutonic Knight": [554],
"Elite Huskarl": [555, 761],
"Elite Mameluke": [556],
"Elite Janissary": [557],
"Elite War Elephant": [558],
"Elite Chu Ko Nu": [559],
"Elite Samurai": [560],
"Elite Mangudai": [561],
"Lumber Camp": [562, 563, 564, 565],
"Champion": [567],
"Paladin": [569],
"Gold Miner": [579, 581],
"Genitour": [583, 1010],
"Mining Camp": [584, 585, 586, 587],
"Siege Onager": [588],
"Shepherd": [590, 592],
"Sheep": [594],
"Elite Genitour": [596, 1012],
"Outpost": [598],
"Cathedral": [599],
"Flag A": [600],
"Flag B": [601],
"Flag C": [602],
"Flag D": [603],
"Flag E": [604],
"Bridge A--Top": [605],
"Bridge A--Middle": [606],
"Bridge A--Bottom": [607],
"Bridge B--Top": [608],
"Bridge B--Middle": [609],
"Bridge B--Bottom": [610],
"Rock 1": [623],
"Pavilion": [624, 625, 626],
"Joan of Arc": [629],
"Frankish Paladin": [632],
"Sieur de Metz": [634],
"Sieur Bertrand": [636],
"Temple of Heaven": [637],
"Duke D'Alençon": [638],
"Penguin": [639],
"La Hire": [640],
"Lord de Graville": [642],
"Jean de Lorrain": [644],
"Constable Richemont": [646],
"Guy Josselyne": [648],
"Jean Bureau": [650],
"Sir John Fastolf": [652],
"Mosque": [655],
"Reynald de Chatillon": [678],
"Master of the Templar": [680],
"Bad Neighbor": [682],
"God's Own Sling": [683],
"The Accursed Tower": [684],
"The Tower of Flies": [685],
"Archers of the Eyes": [686],
"Piece of the True Cross": [688],
"Pyramid": [689],
"Dome of the Rock": [690],
"Elite Cannon Galleon": [691],
"Elite Berserk": [694],
"Great Pyramid": [696],
"Subotai": [698],
"Hunting Wolf": [700],
"Kushluk": [702],
"Shah": [704],
"Cow": [705],
"Saboteur": [706],
"Ornlu the Wolf": [707],
"Cactus": [709],
"Skeleton": [710],
"Rugs": [711],
"Yurt": [712, 713, 714, 715, 716, 717, 718, 719],
"Nine Bands": [720],
"Shipwreck": [721, 722],
"Crater": [723],
"Jaguar Warrior": [725],
"Elite Jaguar Warrior": [726],
"Ice": [728],
"God's Own Sling (Packed)": [729],
"Bad Neighbor (Packed)": [730],
"Genghis Khan": [731],
"Emperor in a Barrel": [733],
"Bamboo Stump": [737],
"Bridge A--Cracked": [738],
"Bridge A--Broken Top": [739],
"Bridge A--Broken Bottom": [740],
"Bridge B--Cracked": [741],
"Bridge B--Broken Top": [742],
"Bridge B--Broken Bottom": [743],
"Mountain 3": [744],
"Mountain 4": [745],
"Cobra Car": [748],
"Eagle Scout": [751],
"Elite Eagle Warrior": [752],
"Eagle Warrior": [753],
"Tarkan": [755, 886],
"Elite Tarkan": [757, 887],
"Burned building": [758],
"Plumed Archer": [763],
"Elite Plumed Archer": [765],
"Conquistador": [771],
"Elite Conquistador": [773],
"Missionary": [775],
"Attila the Hun": [777],
"Canoe": [778],
"Bleda the Hun": [779],
"Pope Leo I": [781],
"Scythian Wild Woman": [783],
"Sea Tower": [785],
"Sea Wall": [788],
"Palisade Gate": [789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804],
"Iron Boar": [810],
"Jaguar": [812],
"Horse": [814],
"Macaw": [816],
"Statue": [817],
"Plant": [818],
"Sign": [819],
"Grave": [820],
"Head": [821],
"Javelina": [822],
"El Cid Campeador": [824],
"Amazon Warrior": [825],
"Monument": [826],
"War Wagon": [827],
"Elite War Wagon": [829],
"Turtle Ship": [831],
"Elite Turtle Ship": [832],
"Turkey": [833],
"Wild Horse": [835],
"Map Revealer": [837],
"King Sancho": [838],
"Rock (Stone)": [839],
"King Alfonso": [840],
"Rock (Gold)": [841],
"Imam": [842],
"Admiral Yi Sun-shin": [844],
"Nobunaga": [845],
"Donkey": [846],
"Henry V": [847],
"William the Conqueror": [849],
"Amazon Archer": [850],
"ES Flag": [851],
"Scythian Scout": [852],
"Torch (Converting)": [853, 854],
"Old Stone Head": [855],
"Roman Ruins": [856],
"Hay Stack": [857],
"Broken Cart": [858],
"Flower Bed": [859],
"Furious the Monkey Boy": [860],
"Stormy Dog": [862],
"Genoese Crossbowman": [866],
"Elite Genoese Crossbowman": [868],
"Magyar Huszar": [869],
"Elite Magyar Huszar": [871],
"Quimper Cathedral": [872],
"Elephant Archer": [873],
"Elite Elephant Archer": [875],
"Boyar": [876],
"Elite Boyar": [878],
"Kamayuk": [879],
"Elite Kamayuk": [881],
"Wild Camel": [884],
"Siege Tower": [885, 1105],
"Heavy Pikeman": [892],
"Eastern Swordsman": [894],
"Waterfall": [896],
"Camel (Gaia)": [897],
"Arch of Constantine": [899],
"Rain": [900],
"Flag F": [901],
"Smoke": [902],
"Wooden Bridge A--Top": [904],
"Wooden Bridge A--Middle": [905],
"Wooden Bridge A--Bottom": [906],
"Wooden Bridge B--Top": [907],
"Wooden Bridge B--Middle": [908],
"Wooden Bridge B--Bottom": [909],
"Impaled Corpse": [910],
"Quarry": [914],
"Lumber": [915],
"Goods": [916],
"Vulture": [917],
"Rock 2": [918],
"Queen": [923],
"Sanyogita": [925],
"Prithvi": [926],
"Chand Bhai": [927],
"Saladin": [929],
"Khosrau": [930],
"Jarl": [931],
"Savaran": [932],
"Barrels": [933],
"Alfred the Alpaca": [934],
"Elephant": [936],
"Dragon Ship": [938],
"Flame 1": [939],
"Flame 2": [940],
"Flame 3": [941],
"Flame 4": [942],
"Organ Gun": [1001],
"Elite Organ Gun": [1003],
"Caravel": [1004],
"Elite Caravel": [1006],
"Camel Archer": [1007],
"Elite Camel Archer": [1009],
"Gbeto": [1013],
"Elite Gbeto": [1015],
"Shotel Warrior": [1016],
"Elite Shotel Warrior": [1018],
"Zebra": [1019],
"Feitoria": [1021],
"Priest": [1023],
"Ostrich": [1026],
"Stork": [1028],
"Lion": [1029],
"Crocodile": [1031],
"Savannah Grass Patch": [1033],
"Musa ibn Nusayr": [1034],
"Sundjata": [1035],
"Tariq ibn Ziyad": [1036],
"Richard de Clare": [1037],
"Tristan": [1038],
"Princess Yodit": [1039],
"Henry II": [1040],
"Mountain 5": [1041],
"Mountain 6": [1042],
"Mountain 7": [1043],
"Mountain 8": [1044],
"Snow Mountain 1": [1045],
"Snow Mountain 2": [1046],
"Snow Mountain 3": [1047],
"Rock Formation 1": [1048],
"Rock Formation 2": [1049],
"Rock Formation 3": [1050],
"Dragon Tree": [1051],
"Baobab Tree": [1052],
"Bush 2": [1053],
"Bush 3": [1054],
"Fruit Bush": [1059],
"Goat": [1060],
"Fence": [1062],
"Acacia Tree": [1063],
"Yekuno Amlak": [1064],
"Yodit": [1066],
"Itzcoatl": [1067],
"Mustafa Pasha": [1068],
"Pacal II": [1069],
"Babur": [1070],
"Abraha Elephant": [1071],
"Guglielmo Embriaco": [1072],
"Su Dingfang": [1073],
"Pachacuti": [1074],
"Huayna Capac": [1075],
"Miklos Toldi": [1076],
"Little John": [1077],
"Zawisza the Black": [1078],
"Sumanguru": [1080],
"Storage": [1081],
"Hut": [1082, 1083, 1084, 1085, 1086, 1087, 1088],
"Granary": [1089],
"Barricade": [1090, 1218, 1219, 1220],
"Animal skeleton": [1091],
"Stelae A": [1092],
"Stelae B": [1093],
"Stelae C": [1094],
"Gallow": [1095],
"Palace": [1096],
"Tent": [1097, 1098, 1099, 1100, 1101],
"Sea Fortification": [1102],
"Fire Galley": [1103],
"Demolition Raft": [1104],
"Dagnajan": [1106],
"Gidajan": [1109],
"Ballista Elephant": [1120],
"Elite Ballista Elephant": [1122],
"Karambit Warrior": [1123],
"Elite Karambit Warrior": [1125],
"Arambai": [1126],
"Elite Arambai": [1128],
"Rattan Archer": [1129],
"Elite Rattan Archer": [1131],
"Battle Elephant": [1132],
"Elite Battle Elephant": [1134],
"Komodo Dragon": [1135],
"Tiger": [1137],
"Rhinoceros": [1139],
"Box Turtles": [1141],
"Water Buffalo": [1142],
"Mangrove Tree": [1144],
"Rainforest Tree": [1146],
"Rock (Beach)": [1148],
"Rock (Jungle)": [1149],
"Flag G": [1150],
"Flag H": [1151],
"Flag I": [1152],
"Flag J": [1153],
"Imperial Skirmisher": [1155],
"Gajah Mada": [1157],
"Jayanegara": [1158],
"Raden Wijaya": [1159],
"Sunda Royal Fighter": [1160],
"Suryavarman I": [1162],
"Udayadityavarman I": [1163],
"Jayaviravarman": [1164],
"Bayinnaung": [1165],
"Tabinshwehti": [1166],
"Buddha Statue A": [1171],
"Buddha Statue B": [1172],
"Buddha Statue C": [1173],
"Buddha Statue D": [1174],
"Fern Patch": [1175],
"Trowulan Gate": [1176],
"Vases": [1177],
"Le Loi": [1178],
"Le Lai": [1179, 1180],
"Le Trien": [1181],
"Luu Nhan Chu": [1182],
"Bui Bi": [1183],
"Dinh Le": [1184],
"Wang Tong": [1185],
"Envoy": [1186],
"Rice Farm": [1187],
"Dead Rice Farm": [1188],
"Stupa": [1191],
"Bridge C--Top": [1204],
"Bridge C--Middle": [1205],
"Bridge C--Bottom": [1206],
"Bridge D--Top": [1207],
"Bridge D--Middle": [1208],
"Bridge D--Bottom": [1209],
"Bridge C--Cracked": [1210],
"Bridge C--Broken Top": [1211],
"Bridge C--Broken Bottom": [1212],
"Bridge D--Cracked": [1213],
"Bridge D--Broken Top": [1214],
"Bridge D--Broken Bottom": [1215],
"Sharkatzor": [1222],
# Uncoment for Wololo kingdoms
# 'Organ Gun' : [106],
# 'Elite Organ Gun' : [114],
# 'Caravel' : [162],
# 'Elite Caravel' : [183],
# 'Camel Archer' : [203],
# 'Elite Camel Archer' : [208],
# 'Genitour' : [223],
# 'Elite Genitour' : [230],
# 'Gbeto' : [260],
# 'Elite Gbeto' : [418],
# 'Shotel Warrior' : [453],
# 'Elite Shotel Warrior' : [459],
# 'Fire Ship' : [467],
# 'Siege Tower' : [494],
# 'Demolition Ship' : [653],
# 'Genitour' : [732],
# 'Feitoria' : [734],
# 'Ballista Elephant' : [760],
# 'Imperial Skirmisher' : [762],
# 'Elite Battle Elephant' : [766],
# 'Battle Elephant' : [774],
# 'Elite Rattan Archer' : [782],
# 'Rattan Archer' : [784],
# 'Elite Arambai' : [811],
# 'Arambai' : [823],
# 'Elite Karambit' : [830],
# 'Karambit' : [836],
# 'Elite Ballista Elephant' : [891],
}
UNITS_INV = {
1: 'Legionary',
4: 'Archer',
5: 'Hand Cannoneer',
6: 'Elite Skirmisher',
7: 'Skirmisher',
8: 'Longbowman',
9: 'Arrow',
10: 'Archery Range',
11: 'Mangudai',
12: 'Barracks',
13: 'Fishing Ship',
14: 'Archery Range',
15: 'Junk',
17: 'Trade Cog',
18: 'Blacksmith',
19: 'Blacksmith',
20: 'Barracks',
21: 'War Galley',
24: 'Crossbowman',
25: 'Teutonic Knight',
26: 'Dead crossbowman',
30: 'Monastery',
31: 'Monastery',
32: 'Monastery',
33: 'Fortress',
35: 'Battering Ram',
36: 'Bombard Cannon',
37: 'Light Cavalry',
38: 'Knight',
39: 'Cavalry Archer',
40: 'Cataphract',
41: 'Huskarl',
42: 'Trebuchet',
45: 'Dock',
46: 'Janissary',
47: 'Dock',
48: 'Wild Boar',
49: 'Siege Workshop',
50: 'Farm',
51: 'Dock',
52: 'Royal Janissary',
53: 'Fish (Perch)',
54: 'Arrow',
56: 'Fisherman',
57: 'Fisherman',
59: 'Forage Bush',
61: 'Dolphin',
63: 'Gate',
64: 'Gate',
65: 'Deer',
66: 'Gold Mine',
67: 'Gate',
68: 'Mill',
69: 'Shore Fish',
70: 'House',
71: 'Town Center',
72: 'Palisade Wall',
73: 'Chu Ko Nu',
74: 'Militia',
75: 'Man-at-Arms',
76: 'Heavy Swordsman',
77: 'Long Swordsman',
78: 'Gate',
79: 'Watch Tower',
80: 'Gate',
81: 'Gate',
82: 'Castle',
83: 'Villager',
84: 'Market',
85: 'Gate',
86: 'Stable',
87: 'Archery Range',
88: 'Gate',
89: 'Dire Wolf',
90: 'Gate',
91: 'Gate',
92: 'Gate',
93: 'Spearman',
94: 'Berserk',
95: 'Gate',
96: 'Hawk',
97: 'Arrow',
101: 'Stable',
102: 'Stone Mine',
103: 'Blacksmith',
104: 'Monastery',
105: 'Blacksmith',
109: 'Town Center',
110: 'Trade Workshop',
111: 'Dead knight',
112: 'Flare',
116: 'Market',
117: 'Stone Wall',
118: 'Builder',
119: 'Fortified Palisade Wall',
120: 'Forager',
122: 'Hunter',
123: 'Lumberjack',
124: 'Stone Miner',
125: 'Monk',
126: 'Wolf',
128: 'Trade Cart',
129: 'Mill',
130: 'Mill',
131: 'Mill',
132: 'Barracks',
133: 'Dock',
137: 'Market',
141: 'Town Center',
142: 'Town Center',
143: 'Rubble 1 x 1',
144: 'Rubble 2 x 2',
145: 'Rubble 3 x 3',
146: 'Rubble 4 x 4',
147: 'Rubble 6 x 6',
148: 'Rubble 8 x 8',
150: 'Siege Workshop',
153: 'Stable',
155: 'Fortified Wall',
156: 'Repairer',
159: 'Relic Cart',
160: 'Richard the Lionheart',
161: 'The Black Prince',
163: 'Friar Tuck',
164: 'Sheriff of Nottingham',
165: 'Charlemagne',
166: 'Roland',
167: 'Belisarius',
168: 'Theodoric the Goth',
169: 'Aethelfirth',
170: 'Siegfried',
171: 'Erik the Red',
172: 'Tamerlane',
173: 'King Arthur',
174: 'Lancelot',
175: 'Gawain',
176: 'Mordred',
177: 'Archbishop',
179: 'Trade Workshop',
180: 'Dead long swordman',
184: 'Condottiero',
185: 'Slinger',
188: 'Flamethrower',
190: 'Fire Tower',
191: 'Rubble 2 x 2',
192: 'Rubble 2 x 2',
193: 'Vlad Dracula',
195: 'Kitabatake',
196: 'Minamoto',
197: 'Alexander Nevski',
198: 'El Cid',
199: 'Fish Trap',
200: 'Robin Hood',
202: 'Rabid Wolf',
204: 'Trade Cart',
206: 'VMDL',
207: 'Imperial Camel',
209: 'University',
210: 'University',
212: 'Builder',
214: 'Farmer',
216: 'Hunter',
218: 'Lumberjack',
220: 'Stone Miner',
221: 'Falcon',
222: 'Repairer',
229: 'Falcon',
231: 'Aqueduct',
232: 'Woad Raider',
234: 'Guard Tower',
235: 'Keep',
236: 'Bombard Tower',
239: 'War Elephant',
241: 'Cracks',
246: 'Osman',
248: 'Pile of Stone',
250: 'Longboat',
251: 'Amphitheatre',
252: 'Pile of Gold',
253: 'Pile of Wood',
259: 'Farmer',
262: 'Pile of Food',
263: 'Colosseum',
264: 'Harbor',
265: 'Harbor',
266: 'Harbor',
267: 'Harbor',
268: 'Harbor',
269: 'Harbor',
270: 'Harbor',
271: 'Harbor',
272: 'Harbor',
273: 'Harbor',
274: 'Flare',
275: 'Centurion',
276: 'Wonder',
278: 'Dead Fish Trap',
279: 'Scorpion',
280: 'Mangonel',
281: 'Throwing Axeman',
282: 'Mameluke',
283: 'Cavalier',
284: 'Tree TD',
285: 'Relic',
286: 'Monk with Relic',
287: 'British Relic',
288: 'Byzantine Relic',
289: 'Chinese Relic',
290: 'Frankish Relic',
291: 'Samurai',
292: 'Gothic Relic',
293: 'Villager',
294: 'Japanese Relic',
295: 'Persian Relic',
296: 'Saracen Relic',
297: 'Teutonic Relic',
298: 'Turkish Relic',
299: 'Bandit',
301: 'Grass Patch',
302: 'Bush',
303: 'Seagulls',
304: 'Bonfire',
305: 'Llama',
306: 'Black Tile',
307: 'Cuauhtemoc',
309: 'Monk with Turkish Relic',
310: 'Mountain 1',
311: 'Mountain 2',
312: 'Arrow',
315: 'Arrow',
316: 'Arrow',
317: 'Arrow',
318: 'Arrow',
319: 'Arrow',
320: 'Arrow',
321: 'Arrow',
322: 'Arrow',
328: 'Arrow',
329: 'Camel',
330: 'Heavy Camel',
331: 'Trebuchet (Packed)',
332: 'Flare',
333: 'Deer',
334: 'Flowers 1',
335: 'Flowers 2',
336: 'Flowers 3',
337: 'Flowers 4',
338: 'Path 4',
339: 'Path 1',
340: 'Path 2',
341: 'Path 3',
345: 'Ruins',
348: 'Bamboo Forest Tree',
349: 'Oak Forest Tree',
350: 'Pine Forest Tree',
351: 'Palm Forest Tree',
352: 'Army Tent',
354: 'Forager',
357: 'Dead Farm',
358: 'Pikeman',
359: 'Halberdier',
360: 'Arrow',
361: 'Nordic Swordsman',
363: 'Arrow',
364: 'Arrow',
365: 'Arrow',
366: 'Arrow',
370: 'City Wall',
372: 'Arrow',
373: 'Arrow',
375: 'Arrow',
376: 'Arrow',
377: 'Arrow',
381: 'Osman',
389: 'Sea Rocks 1',
390: 'Pagoda',
396: 'Sea Rocks 2',
397: 'Sanchi Stupa',
398: 'Gol Gumbaz',
399: 'Tree A',
400: 'Tree B',
401: 'Tree C',
402: 'Tree D',
403: 'Tree E',
404: 'Tree F',
405: 'Tree G',
406: 'Tree H',
407: 'Tree I',
408: 'Tree J',
409: 'Tree K',
410: 'Tree L',
411: 'Forest Tree',
413: 'Snow Pine Tree',
414: 'Jungle Tree',
415: 'Stump',
420: 'Cannon Galleon',
422: 'Capped Ram',
424: 'Charles Martel',
425: 'Francisco de Orellana',
426: 'Harald Hardraade',
427: 'Gonzalo Pizarro',
428: 'Hrolf the Ganger',
429: 'Frederick Barbarossa',
430: 'Joan the Maid',
432: 'William Wallace',
434: 'King',
437: 'Prithviraj',
439: 'Francesco Sforza',
440: 'Petard',
441: 'Hussar',
442: 'Galleon',
445: 'Poenari Castle',
446: 'Port',
448: 'Scout Cavalry',
450: 'Great Fish (Marlin)',
451: 'Great Fish (Marlin)',
452: 'Dolphin',
455: 'Fish (Dorado)',
456: 'Fish (Salmon)',
457: 'Fish (Tuna)',
458: 'Fish (Snapper)',
463: 'House',
464: 'House',
465: 'House',
466: 'Arrow',
472: 'Loot',
473: 'Two-Handed Swordsman',
474: 'Heavy Cavalry Archer',
475: 'Arrow',
476: 'Arrow',
477: 'Arrow',
478: 'Arrow',
481: 'Town Center',
482: 'Town Center',
483: 'Town Center',
484: 'Town Center',
485: 'Arrow',
486: 'Bear',
487: 'Gate',
488: 'Gate',
490: 'Gate',
491: 'Gate',
492: 'Arbalest',
493: 'Advanced Heavy Crossbowman',
498: 'Barracks',
499: 'Torch',
501: 'Dead pikeman',
503: 'Arrow',
504: 'Arrow',
505: 'Arrow',
507: 'Arrow',
508: 'Arrow',
509: 'Arrow',
510: 'Arrow',
511: 'Arrow',
512: 'Arrow',
514: 'Arrow',
515: 'Arrow',
516: 'Arrow',
517: 'Arrow',
518: 'Arrow',
519: 'Arrow',
520: 'Arrow',
521: 'Arrow',
522: 'Arrow',
523: 'Arrow',
524: 'Arrow',
525: 'Arrow',