-
Notifications
You must be signed in to change notification settings - Fork 0
/
ID_items.py
1083 lines (1083 loc) · 29.4 KB
/
ID_items.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
itm_no_item = 0
itm_horse_meat = 1
itm_practice_sword = 2
itm_heavy_practice_sword = 3
itm_practice_dagger = 4
itm_practice_axe = 5
itm_arena_axe = 6
itm_arena_sword = 7
itm_arena_sword_two_handed = 8
itm_arena_lance = 9
itm_practice_staff = 10
itm_practice_lance = 11
itm_practice_shield = 12
itm_practice_bow = 13
itm_practice_crossbow = 14
itm_practice_javelin = 15
itm_practice_javelin_melee = 16
itm_practice_throwing_daggers = 17
itm_practice_throwing_daggers_100_amount = 18
itm_practice_horse = 19
itm_practice_arrows = 20
itm_practice_bolts = 21
itm_practice_arrows_10_amount = 22
itm_practice_arrows_100_amount = 23
itm_practice_bolts_9_amount = 24
itm_practice_boots = 25
itm_red_tourney_armor = 26
itm_blue_tourney_armor = 27
itm_green_tourney_armor = 28
itm_gold_tourney_armor = 29
itm_red_tourney_helmet = 30
itm_blue_tourney_helmet = 31
itm_green_tourney_helmet = 32
itm_gold_tourney_helmet = 33
itm_arena_shield_red = 34
itm_arena_shield_blue = 35
itm_arena_shield_green = 36
itm_arena_shield_yellow = 37
itm_arena_armor_white = 38
itm_arena_armor_red = 39
itm_arena_armor_blue = 40
itm_arena_armor_green = 41
itm_arena_armor_yellow = 42
itm_arena_tunic_white = 43
itm_arena_tunic_red = 44
itm_arena_tunic_blue = 45
itm_arena_tunic_green = 46
itm_arena_tunic_yellow = 47
itm_arena_helmet_red = 48
itm_arena_helmet_blue = 49
itm_arena_helmet_green = 50
itm_arena_helmet_yellow = 51
itm_steppe_helmet_white = 52
itm_steppe_helmet_red = 53
itm_steppe_helmet_blue = 54
itm_steppe_helmet_green = 55
itm_steppe_helmet_yellow = 56
itm_tourney_helm_white = 57
itm_tourney_helm_red = 58
itm_tourney_helm_blue = 59
itm_tourney_helm_green = 60
itm_tourney_helm_yellow = 61
itm_arena_turban_red = 62
itm_arena_turban_blue = 63
itm_arena_turban_green = 64
itm_arena_turban_yellow = 65
itm_book_tactics = 66
itm_book_persuasion = 67
itm_book_leadership = 68
itm_book_intelligence = 69
itm_book_prisoner_management = 70
itm_book_trade = 71
itm_book_weapon_mastery = 72
itm_book_engineering = 73
itm_book_wound_treatment_reference = 74
itm_book_training_reference = 75
itm_book_surgery_reference = 76
itm_book_spotting_reference = 77
itm_book_first_aid_reference = 78
itm_book_pathfinding_reference = 79
itm_spice = 80
itm_salt = 81
itm_olive_oil = 82
itm_pottery = 83
itm_raw_flax = 84
itm_linen = 85
itm_wool = 86
itm_wool_cloth = 87
itm_raw_silk = 88
itm_raw_dyes = 89
itm_silk = 90
itm_iron = 91
itm_tools = 92
itm_raw_leather = 93
itm_leatherwork = 94
itm_raw_date_fruit = 95
itm_furs = 96
itm_wine = 97
itm_ale = 98
itm_smoked_fish = 99
itm_cheese = 100
itm_honey = 101
itm_sausages = 102
itm_cabbages = 103
itm_dried_meat = 104
itm_apples = 105
itm_raw_grapes = 106
itm_raw_olives = 107
itm_grain = 108
itm_cattle_meat = 109
itm_bread = 110
itm_chicken = 111
itm_pork = 112
itm_butter = 113
itm_quail = 114
itm_pheasant = 115
itm_goose = 116
itm_venison = 117
itm_boar = 118
itm_persimmons = 119
itm_rye = 120
itm_gourds = 121
itm_mutton = 122
itm_brandy = 123
itm_medicine = 124
itm_coffee = 125
itm_rum = 126
itm_rice = 127
itm_barley = 128
itm_whiskey = 129
itm_iron_ore = 130
itm_copper_ore = 131
itm_tin_ore = 132
itm_raw_hemp = 133
itm_apothecary_supplies = 134
itm_indigo = 135
itm_cotton = 136
itm_trade_horses = 137
itm_gunpowder = 138
itm_trade_tea = 139
itm_game_dogs = 140
itm_various_guns = 141
itm_tobacco = 142
itm_sugar = 143
itm_copper = 144
itm_tin = 145
itm_dyed_cloth = 146
itm_hemp_cloth = 147
itm_siege_supply = 148
itm_quest_wine = 149
itm_quest_ale = 150
itm_gun_shipment = 151
itm_tutorial_spear = 152
itm_wooden_shield = 153
itm_tutorial_club = 155
itm_tutorial_battle_axe = 156
itm_tutorial_arrows = 157
itm_tutorial_bolts = 158
itm_tutorial_short_bow = 159
itm_tutorial_crossbow = 160
itm_tutorial_throwing_daggers = 161
itm_tutorial_saddle_horse = 162
itm_tutorial_shield = 163
itm_tutorial_staff_no_attack = 164
itm_tutorial_staff = 165
itm_tutorial_sword = 166
itm_tutorial_axe = 167
itm_tutorial_dagger = 168
itm_keys = 169
itm_practice_bow_2 = 170
itm_practice_arrows_2 = 171
itm_spanish_dragoon_horse = 172
itm_spanish_guardia_horse = 173
itm_spanish_cuirassier_horse = 174
itm_french_carabinier_horse = 175
itm_french_chevau_horse = 176
itm_french_cuirassier_horse = 177
itm_british_dragoon_horse = 178
itm_british_black_horseman_horse = 179
itm_prussian_dragoon_horse = 180
itm_prussian_lancer_horse = 181
itm_prussian_cuirassier_horse = 182
itm_austrian_chevaux_horse = 183
itm_austrian_hussar_horse = 184
itm_austrian_cuirassier_horse = 185
itm_swedish_dragoon_horse = 186
itm_swedish_adelsfanan_horse = 187
itm_swedish_cuirassier_horse = 188
itm_hanoverian_grenadier_horse = 189
itm_hanoverian_garde_horse = 190
itm_russian_horse_grenadier_horse = 191
itm_russian_hussar_horse = 192
itm_saxon_light_dragoon_horse = 193
itm_saxon_cuirassier_horse = 194
itm_portuguese_moura_horse = 195
itm_artillery_horse = 196
itm_ottoman_deli_horse = 197
itm_ottoman_kapikulu_horse = 198
itm_ottoman_siphai_horse = 199
itm_ottoman_bey_horse_1 = 200
itm_ottoman_bey_horse_2 = 201
itm_ottoman_aga_horse = 202
itm_sumpter_horse = 203
itm_saddle_horse = 204
itm_steppe_horse = 205
itm_arabian_horse_a = 206
itm_courser = 207
itm_arabian_horse_b = 208
itm_hunter = 209
itm_arabian_horse_c = 210
itm_magyar_painted_horse = 211
itm_chestnut_destrier = 212
itm_chestnut_courser = 213
itm_tan_rouncey = 214
itm_spanish_jennet_horse = 215
itm_cossack_steppe_horse = 216
itm_donkey_1 = 217
itm_donkey_2 = 218
itm_mule = 219
itm_camel_1 = 220
itm_camel_2 = 221
itm_goat_a = 222
itm_goat_b = 223
itm_bandit_tricorn = 224
itm_swedish_mitre = 225
itm_swedish_infantry_cap = 226
itm_swedish_dal_cap = 227
itm_swedish_karelska_cap = 228
itm_swedish_narke_varmlands_cap = 229
itm_british_mitre_c = 230
itm_musket_hat_b = 231
itm_russia_mitre = 232
itm_bombardier_hat = 233
itm_civilian_tricorn_white = 234
itm_austrian_cuirassier_helmet = 235
itm_pirates_headscarf_b = 236
itm_pirates_headscarf_a = 237
itm_musket_hat = 238
itm_austrian_hussar_hat = 239
itm_spain_grenadier_hat = 240
itm_savoy_grenadier_hat = 241
itm_saxon_polish_grenadier_cap = 242
itm_saxon_sachsische_grenadier_cap = 243
itm_saxon_kurprinz_cap = 244
itm_denmark_grenadier_cap = 245
itm_prussia_postdam_giant_mitre = 246
itm_dutch_grenadier_hat = 247
itm_musket_hat_c = 248
itm_civilian_tricorn_brown = 249
itm_civilian_tricorn_blonde = 250
itm_1700_tricorn_a = 251
itm_1700_tricorn_general_b = 252
itm_spanish_habsburgs_grenadier_hat = 253
itm_cossack_hat = 254
itm_king_wig_b = 255
itm_gentleman_wig_a = 256
itm_gentleman_wig_b = 257
itm_1700_tricorn_officer_b = 258
itm_1700_tricorn_officer_d = 259
itm_gentleman_wig_c = 260
itm_british_mitre_a = 261
itm_1700_tricorn_h = 262
itm_1700_tricorn_i = 263
itm_austrian_grenadier_furhat = 264
itm_bavaria_grenadier_furhat = 265
itm_prussia_grenadier_cap = 266
itm_prussia_grenadier_guard_cap = 267
itm_russia_mitre_b = 268
itm_russia_bombadier_hat = 269
itm_russia_preobrazhensky_cap = 270
itm_russia_butyrsky_cap = 271
itm_russia_nizhny_novgorodsky_cap = 272
itm_russia_kroptov_mitre = 273
itm_1700_tricorn_officer_a = 274
itm_british_mitre_d = 275
itm_1700_tricorn_b = 276
itm_king_wig = 277
itm_1700_tricorn_e = 278
itm_french_grenadier_furhat = 279
itm_1700_tricorn_f = 280
itm_1700_tricorn_d = 281
itm_1700_tricorn_general_a = 282
itm_1700_tricorn_c = 283
itm_1700_tricorn_general_c = 285
itm_1700_tricorn_general_d = 286
itm_pirates_hair_scarf = 287
itm_villager_hat_white_lace = 288
itm_folded_hat_with_brown_wig = 289
itm_black_bicorne_blue_lapel_with_wig = 290
itm_womans_bonnet_blonde = 291
itm_blue_beret = 292
itm_wide_brim_1 = 293
itm_wide_brim_2 = 294
itm_wide_brim_3 = 295
itm_wide_brim_4 = 296
itm_wide_brim_5 = 297
itm_brown_hunting_tricone = 298
itm_black_hunting_tricorne = 299
itm_polish_hat_officer = 300
itm_polish_hat_a = 301
itm_polish_hat_b = 302
itm_polish_hat_c = 303
itm_polish_cuirassier_helmet = 304
itm_hunters_bicorne = 305
itm_ottoman_janissary_hat = 306
itm_ottoman_hat_a = 307
itm_ottoman_hat_b = 308
itm_ottoman_hat_c = 309
itm_ottoman_hat_d = 310
itm_ottoman_hat_e = 311
itm_ottoman_hat_f = 312
itm_ottoman_hat_g = 313
itm_ottoman_hat_h = 314
itm_ottoman_mameluke_hat = 315
itm_ottoman_nizam_hat_a = 316
itm_ottoman_nizam_hat_b = 317
itm_ottoman_sipahi_helmet_1 = 318
itm_ottoman_kapikulu_helmet_1 = 319
itm_ottoman_metal_skullcap = 320
itm_ottoman_turban_helmet = 321
itm_ottoman_nasal_helmet = 322
itm_ottoman_turban_with_cap = 323
itm_ottoman_sipahi_helmet_2 = 324
itm_ottoman_sipahi_helmet_3 = 325
itm_ottoman_sipahi_helmet_4 = 326
itm_ottoman_kapikulu_helmet_2 = 327
itm_ottoman_kapikulu_helmet_3 = 328
itm_higlander_hat_1 = 329
itm_higlander_hat_2 = 330
itm_higlander_hat_3 = 331
itm_higlander_hat_4 = 332
itm_kuruc_hat_1 = 333
itm_kuruc_hat_2 = 334
itm_kuruc_hat_3 = 335
itm_kuruc_hat_4 = 336
itm_straw_hat = 337
itm_headcloth = 338
itm_sarranid_felt_hat = 339
itm_woolen_cap = 340
itm_woolen_hood = 341
itm_fur_hat = 342
itm_felt_hat = 343
itm_felt_hat_b = 344
itm_turban = 345
itm_common_hood = 346
itm_female_hood = 347
itm_hood_b = 348
itm_hood_c = 349
itm_hood_d = 350
itm_turret_hat_ruby = 351
itm_turret_hat_blue = 352
itm_turret_hat_green = 353
itm_court_hat = 354
itm_wimple_a = 355
itm_wimple_with_veil = 356
itm_khergit_lady_hat = 357
itm_khergit_lady_hat_b = 358
itm_sarranid_head_cloth = 359
itm_sarranid_head_cloth_b = 360
itm_sarranid_felt_head_cloth = 361
itm_sarranid_felt_head_cloth_b = 362
itm_nomad_cap = 363
itm_nomad_cap_b = 364
itm_leather_steppe_cap_a = 365
itm_1700_villager_a = 366
itm_1700_villager_b = 367
itm_1700_farmer_a = 368
itm_1700_farmer_b = 369
itm_1700_farmer_c = 370
itm_pirates_uniform_a = 371
itm_pirates_uniform_b = 372
itm_pirates_uniform_c = 373
itm_bandit_coat_a = 374
itm_bandit_coat_b = 375
itm_bandit_coat_c = 376
itm_bandit_coat_d = 377
itm_gentleman_outfit_a = 378
itm_gentleman_outfit_b = 379
itm_gentleman_outfit_c = 380
itm_gentleman_outfit_d = 381
itm_gentleman_outfit_e = 382
itm_longcoat_a = 383
itm_longcoat_b = 384
itm_longcoat_c = 385
itm_longcoat_d = 386
itm_longcoat_e = 387
itm_longcoat_f = 388
itm_dueling_shirt = 389
itm_dueling_shirt_green = 390
itm_dueling_shirt_grey = 391
itm_peasant_shirt_1 = 392
itm_slavic_elder_1 = 393
itm_slavic_villager_1 = 394
itm_slavic_vest_brown = 395
itm_slavic_vest_paisley = 396
itm_slavic_kaftan_1 = 397
itm_slavic_kaftan_2 = 398
itm_villager_blue_tunic = 399
itm_villager_white_robe = 400
itm_villager_black_robe = 401
itm_slavic_elegant_1 = 402
itm_slavic_elegant_2 = 403
itm_slavic_elegant_3 = 404
itm_slavic_elegant_4 = 405
itm_robe = 406
itm_sarranid_cloth_robe = 407
itm_sarranid_cloth_robe_b = 408
itm_1700_women_dress_a = 409
itm_1700_women_dress_b = 410
itm_1700_women_dress_c = 411
itm_1700_women_dress_d = 412
itm_1700_women_dress_e = 413
itm_1700_women_dress_f = 414
itm_1700_women_dress_g = 415
itm_1700_women_dress_h = 416
itm_1700_women_dress_i = 417
itm_1700_women_dress_j = 418
itm_1700_women_dress_k = 419
itm_1700_women_dress_l = 420
itm_1700_women_dress_m = 421
itm_1700_women_dress_n = 422
itm_1700_women_dress_o = 423
itm_1700_women_dress_p = 424
itm_1700_women_dress_q = 425
itm_1700_women_dress_r = 426
itm_1700_women_dress_s = 427
itm_lady_dress_ruby = 428
itm_lady_dress_green = 429
itm_lady_dress_blue = 430
itm_red_dress = 431
itm_brown_dress = 432
itm_green_dress = 433
itm_khergit_lady_dress = 434
itm_khergit_lady_dress_b = 435
itm_sarranid_lady_dress = 436
itm_sarranid_lady_dress_b = 437
itm_bride_dress = 438
itm_bride_crown = 439
itm_bride_shoes = 440
itm_burlap_tunic = 441
itm_peasant_blue_dress = 442
itm_peasant_green_dress = 443
itm_peasant_grey_dress = 444
itm_peasant_purple_dress = 445
itm_peasant_red_dress = 446
itm_sarranid_common_dress = 447
itm_sarranid_common_dress_b = 448
itm_dress = 449
itm_blue_dress = 450
itm_peasant_dress = 451
itm_woolen_dress = 452
itm_sarranid_dress_a = 453
itm_sarranid_dress_b = 454
itm_austria_a = 455
itm_austria_b = 456
itm_austria_c = 457
itm_austrian_hussar = 458
itm_austrian_cuirassier = 459
itm_austrian_grenadier = 460
itm_austrian_officer = 461
itm_austrian_drummer = 462
itm_austrian_general = 463
itm_hessen_schopping_regiment = 464
itm_hessen_prinz_wilhelm_regiment = 465
itm_hessen_erbprinz_von_hessen_kassel_regiment = 466
itm_hessen_light_horse_cavalry = 467
itm_hessen_the_hessian_guard_leibregiment = 468
itm_crown_prince_wuerttemburg_cavalry = 469
itm_savoy_pikeline = 470
itm_savoy_rehbinder_regiment = 471
itm_savoy_desportes_regiment = 472
itm_savoy_la_trinita_grenadier_regiment = 473
itm_savoy_dragoon_cavalry = 474
itm_savoy_guard_horse_cavalry = 475
itm_savoy_general_uniform = 476
itm_savoy_officer = 477
itm_savoy_standard_bearer = 478
itm_savoy_drummer = 479
itm_bavarian_a = 480
itm_bavarian_b = 481
itm_bavarian_c = 482
itm_bavarian_d = 483
itm_bavarian_grenadier = 484
itm_bavarian_officer = 485
itm_bavarian_drgoon = 486
itm_bavarian_grenadier_cavalry = 487
itm_bavarian_prince_phillipe_cavalry = 488
itm_bavarian_drummer = 489
itm_bavarian_general = 490
itm_british_a = 491
itm_british_b = 492
itm_british_c = 493
itm_british_d = 494
itm_british_e = 495
itm_british_f = 496
itm_british_grenadier_a = 497
itm_british_grenadier_b = 498
itm_british_dragoon_a = 499
itm_british_dragoon_b = 500
itm_british_drummer = 501
itm_british_officer = 502
itm_british_general = 503
itm_dutch_a = 504
itm_dutch_b = 505
itm_dutch_c = 506
itm_dutch_d = 507
itm_dutch_e = 508
itm_dutch_drgoon = 509
itm_dutch_blue_guard = 510
itm_dutch_cuirassier = 511
itm_dutch_grenadier = 512
itm_dutch_officer = 513
itm_dutch_drummer = 514
itm_dutch_general = 515
itm_french_a = 516
itm_french_b = 517
itm_french_c = 518
itm_french_d = 519
itm_french_e = 520
itm_french_f = 521
itm_french_g = 522
itm_french_h = 523
itm_royal_italien = 524
itm_surbeck_regiment = 525
itm_clare_regiment = 526
itm_french_cavalry_a = 527
itm_french_cavalry_b = 528
itm_french_bombadier = 529
itm_french_officer = 530
itm_french_officer_b = 531
itm_french_drummer = 532
itm_french_general_a = 533
itm_french_general_b = 534
itm_spanish_habsburgs_grenadier = 535
itm_spanish_habsburgs_guerillas_a = 536
itm_spanish_habsburgs_guerillas_b = 537
itm_spanish_habsburgs_guerillas_c = 538
itm_spanish_habsburgs_fuseller_the_muntanya = 539
itm_spanish_habsburgs_diputacio = 540
itm_spanish_habsburgs_barcelona = 541
itm_spanish_habsburgs_immaculada = 542
itm_spanish_habsburgs_eulalia = 543
itm_spanish_habsburgs_desemparats = 544
itm_spanish_habsburgs_narciso = 545
itm_spanish_habsburgs_roser = 546
itm_spanish_habsburgs_mallorca = 547
itm_spanish_habsburgs_nebot = 548
itm_spanish_habsburgs_de_la_fe = 549
itm_spanish_habsburgs_san_miquel = 550
itm_spanish_habsburgs_drummer = 551
itm_spanish_habsburgs_standard_bearer = 552
itm_spanish_habsburgs_officer = 553
itm_spanish_habsburgs_general = 554
itm_spanish_bourbon_a = 555
itm_spanish_bourbon_b = 556
itm_spanish_bourbon_c = 557
itm_spanish_bourbon_d = 558
itm_spanish_bourbon_e = 559
itm_spanish_bourbon_f = 560
itm_spanish_bourbon_cavalry_a = 561
itm_spanish_bourbon_cavalry_b = 562
itm_spanish_grenadier = 563
itm_spanish_officer = 564
itm_spanish_drummer = 565
itm_spanish_general = 566
itm_saxon_kurprinz = 567
itm_saxon_pistoris = 568
itm_saxon_steinau = 569
itm_saxon_thielau = 570
itm_saxon_polnische_garde = 571
itm_saxon_sachsische_garde = 572
itm_saxon_officer = 573
itm_saxon_goltz_dragoon = 574
itm_saxon_leibregiment_cuirassier = 575
itm_saxon_general = 576
itm_saxon_standard_bearer = 577
itm_polish_officer = 578
itm_polish_grenadier_musketeer = 579
itm_polish_musketeer = 580
itm_polish_dragoon_cavalry = 581
itm_polish_fusilier = 582
itm_polish_general = 583
itm_polish_cuirassier = 584
itm_polish_arquebusier_cavalry = 585
itm_polish_guard_dragoon_cavalry = 586
itm_polish_drummer = 587
itm_polish_saxon_drummer = 588
itm_prussian_markgraf = 589
itm_prussian_leibregiment = 590
itm_prussian_anhalt_dessau = 591
itm_prussian_donhoff_anhalt = 592
itm_prussia_grenadier_guard = 593
itm_prussian_leibregiment_cavalry = 594
itm_prussian_portail_cavalry = 595
itm_prussian_wartensleben_cavalry = 596
itm_prussian_officer = 597
itm_prussian_general = 598
itm_prussian_cuirassiers = 599
itm_prussian_potsdamn_giants = 600
itm_prussian_drummer = 601
itm_prussian_standard_bearer = 602
itm_swedish_alvsborg_regiment = 603
itm_swedish_jonkoping_regiment = 604
itm_swedish_grenadier_new = 605
itm_swedish_grenadier = 606
itm_swedish_dal_regiment = 607
itm_swedish_narke_varmlands = 608
itm_swedish_sodermanlands = 609
itm_swedish_uppland = 610
itm_swedish_nv_tremannigar = 611
itm_swedish_mellins_estlandska = 612
itm_swedish_pommerska_dragoon = 613
itm_swedish_nyland_och_tavastchus_lans = 614
itm_swedish_karelska = 615
itm_swedish_skanska = 616
itm_swedish_drabant = 617
itm_swedish_officer = 618
itm_swedish_general = 619
itm_swedish_drummer = 620
itm_swedish_standard_bearer = 621
itm_denmark_musketeer_regiment_of_foot = 622
itm_denmark_sjallandska_regiment = 623
itm_denmark_prince_charles_regiment = 624
itm_denmark_life_guards_on_foot = 625
itm_denmark_marine_regiment = 626
itm_denmark_prince_christians_regiment = 627
itm_denmark_funen_regiment = 628
itm_denmark_first_danish_regiment = 629
itm_denmark_aarhus_rural_militia = 630
itm_denmark_grenadier = 631
itm_denmark_life_dragoon_cavalry = 632
itm_denmark_ungerska_dragonerna_cavalry = 633
itm_denmark_livgardet_till_hast_cavalry = 634
itm_denmark_officer = 635
itm_denmark_general = 636
itm_denmark_standard_bearer = 637
itm_denmark_drummer = 638
itm_russia_strelets_red = 639
itm_russia_strelets_blue = 640
itm_russia_grenadier = 641
itm_russia_preobrazhenksy = 642
itm_russia_st_petersberg = 643
itm_russia_kampenhausen = 644
itm_russia_artillery = 645
itm_russia_preobrazhenksy_grenadier = 646
itm_russia_semenovsky_guard_musketeers = 647
itm_russia_cossack_infantry = 648
itm_russia_cossack_infantry_2 = 649
itm_russia_cossack_infantry_3 = 650
itm_russia_cossack_infantry_4 = 651
itm_russia_butyrsky = 652
itm_russia_narvsky = 653
itm_russia_nizhny_novgorodsky = 654
itm_russia_ingermanlandski = 655
itm_russia_moskovsky_dragoon = 656
itm_russia_kroptov_horse_grenadier = 657
itm_russia_officer = 658
itm_russia_general = 659
itm_russia_drummer = 660
itm_russia_standard_bearer = 661
itm_ottoman_janissary = 662
itm_ottoman_uniform_a = 663
itm_ottoman_uniform_b = 664
itm_ottoman_uniform_c = 665
itm_ottoman_uniform_d = 666
itm_ottoman_uniform_e = 667
itm_ottoman_uniform_f = 668
itm_ottoman_uniform_g = 669
itm_ottoman_uniform_h = 670
itm_ottoman_uniform_i = 671
itm_ottoman_uniform_j = 672
itm_ottoman_uniform_bey_1 = 673
itm_ottoman_uniform_bey_2 = 674
itm_ottoman_uniform_aga = 675
itm_ottoman_drummer = 676
itm_ottoman_uniform_sipahi = 678
itm_ottoman_uniform_kapikulu = 679
itm_cossack_cavalry = 680
itm_cossack_cavalry_2 = 681
itm_musketeer_a = 682
itm_musketeer_b = 683
itm_pikeman_a = 684
itm_pikeman_b = 685
itm_militia_infantry_a = 686
itm_militia_infantry_b = 687
itm_militia_infantry_c = 688
itm_militia_drummer = 689
itm_militia_dragoon = 690
itm_ottoman_militia_a = 691
itm_ottoman_militia_b = 692
itm_ottoman_militia_c = 693
itm_ottoman_militia_d = 694
itm_ottoman_militia_officer = 695
itm_serbian_irregular = 696
itm_under_coat_black = 697
itm_under_coat_grey = 698
itm_highlander_white = 699
itm_highlander_black = 700
itm_highlander_vest_white = 701
itm_highlander_vest_black = 702
itm_highlander_leader_1 = 703
itm_highlander_leader_2 = 704
itm_general_a = 705
itm_general_b = 706
itm_general_c = 707
itm_general_d = 708
itm_general_e = 709
itm_kuroc_uniform_a = 710
itm_kuroc_uniform_b = 711
itm_kuroc_uniform_c = 712
itm_kuroc_uniform_d = 713
itm_linen_tunic = 714
itm_pirate_coat_1 = 715
itm_leather_gloves = 716
itm_white_gloves = 717
itm_buff_gloves = 718
itm_sipahi_gauntlets = 719
itm_kapikulu_gauntlets = 720
itm_civilian_shoes_b = 721
itm_civilian_shoes_c = 722
itm_blue_stocking_buckle_shoes = 723
itm_red_stocking_buckle_shoes = 724
itm_white_stocking_buckle_shoes = 725
itm_orange_stocking_buckle_shoes = 726
itm_yellow_stocking_buckle_shoes = 727
itm_grey_stocking_buckle_shoes = 728
itm_black_gaiter_stocking_shoes = 729
itm_white_gaiter_stocking_shoes = 730
itm_grey_gaiter_stocking_shoes = 731
itm_brown_gaiter_stocking_shoes = 732
itm_yellow_gaiter_stocking_shoes = 733
itm_red_gaiter_stocking_shoes = 734
itm_gentlemens_shoes = 735
itm_farmer_shoes = 736
itm_black_boot_a = 737
itm_pirate_boots = 738
itm_cavalry_boots = 739
itm_black_folded_boots = 740
itm_kuruc_boots_1 = 741
itm_hussar_boots = 742
itm_brown_leather_boots = 743
itm_infantry_shoes_black = 744
itm_infantry_shoes_white = 745
itm_infantry_shoes_red = 746
itm_infantry_shoes_light_grey = 747
itm_infantry_shoes_yellow = 748
itm_infantry_shoes_dark_red = 749
itm_infantry_shoes_green = 750
itm_infantry_shoes_dark_blue = 751
itm_infantry_shoes_light_blue = 752
itm_infantry_shoes_deep_blue = 753
itm_infantry_shoes_dark_orange = 754
itm_infantry_shoes_dark_yellow = 755
itm_infantry_shoes_deep_red = 756
itm_infantry_shoes_white_b = 757
itm_infantry_shoes_white_blue_stripe = 758
itm_ottoman_shoes_a = 759
itm_ottoman_shoes_b = 760
itm_ottoman_kapikulu_boot = 761
itm_highlander_boots_1 = 762
itm_highlander_boots_2 = 763
itm_highlander_boots_3 = 764
itm_highlander_boots_4 = 765
itm_sarranid_boots_b = 766
itm_khergit_leather_boots = 767
itm_austrian_hussar_sabre = 768
itm_british_infantry_sword = 769
itm_british_cavalry_sword = 770
itm_spanish_broadsword = 771
itm_hungarian_sabre = 772
itm_infantry_hanger = 773
itm_officer_smallsword = 774
itm_polish_sabre = 775
itm_german_dragoon_sword = 776
itm_french_grenadier_hanger = 777
itm_infantry_sword = 778
itm_spanish_cavalry_sword = 779
itm_dragoon_officer_sword = 780
itm_scottish_broadsword = 781
itm_spanish_cavalry_broadsword = 782
itm_hungarian_grenadier_sword = 783
itm_russian_shashka = 784
itm_artillery_sword = 785
itm_epee_du_soldat = 786
itm_spanish_dragoon_sword = 787
itm_old_schianova = 788
itm_pirate_cutlass = 789
itm_slavic_hand_axe = 790
itm_rapier_1 = 791
itm_rapier_2 = 792
itm_rapier_3 = 793
itm_rapier_4 = 794
itm_rapier_5 = 795
itm_rapier_6 = 796
itm_cane_sword_1 = 797
itm_cane_sword_2 = 798
itm_village_cleaver_1 = 799
itm_village_cleaver_2 = 800
itm_highlander_broadsword = 801
itm_falchion_2 = 802
itm_sarranid_mace_1 = 803
itm_scimitar_b = 804
itm_scimitar = 805
itm_village_blade_3 = 806
itm_village_blade_4 = 807
itm_village_cudgel = 808
itm_village_blade_8 = 809
itm_ottoman_blade_1 = 810
itm_spiked_club = 811
itm_long_spiked_club = 812
itm_pickaxe = 813
itm_hammer = 814
itm_military_hammer = 815
itm_polehammer = 816
itm_mace_1 = 817
itm_mace_2 = 818
itm_mace_3 = 819
itm_arabian_sword_a = 820
itm_arabian_sword_b = 821
itm_sarranid_cavalry_sword = 822
itm_sword_khergit_1 = 823
itm_sword_khergit_2 = 824
itm_arabian_sword_d = 825
itm_sword_khergit_3 = 826
itm_sword_khergit_4 = 827
itm_fighting_axe = 828
itm_one_handed_war_axe_a = 829
itm_axe = 830
itm_knife = 831
itm_dagger = 832
itm_butchering_knife = 833
itm_blackjack = 834
itm_falchion = 835
itm_village_blade = 836
itm_village_blade_2 = 837
itm_ottoman_dagger = 838
itm_slavic_knife = 839
itm_dueling_dagger_1 = 840
itm_dueling_dagger_2 = 841
itm_unique_dagger_1 = 842
itm_wooden_stick = 843
itm_cudgel = 844
itm_club = 845
itm_cleaver = 846
itm_hatchet = 847
itm_hand_axe = 848
itm_sickle = 849
itm_farmer_sickle = 850
itm_highlander_dirk = 851
itm_hunting_knife = 852
itm_pikeman_dagger = 853
itm_village_chopper = 854
itm_village_dagger_2 = 855
itm_garde_suisses_flag = 856
itm_du_roi_flag = 857
itm_lorraine_flag = 858
itm_de_la_reine_flag = 859
itm_de_la_marine_flag = 860
itm_gardes_francaises_flag = 861
itm_the_queen_dowager_regiment_flag = 862
itm_churchill_regiment_flag = 863
itm_ferguson_regiment_flag = 864
itm_river_regiment_flag = 865
itm_footguard_regiment_flag = 866
itm_dutch_flag = 867
itm_hirzel_flag = 868
itm_blue_guard_a_flag = 869
itm_blue_guard_b_flag = 870
itm_leib_regiment_flag_a = 871
itm_leib_regiment_flag_b = 872
itm_kurprinz_regiment_flag = 873
itm_massei_regiment_flag = 874
itm_spanish_wallon_guard_flag = 875
itm_spanish_alternate_aragon_flag = 876
itm_spanish_infantry_flag = 877
itm_spanish_guard_flag = 878
itm_austrian_flag = 879
itm_austrian_b_flag = 880
itm_austrian_c_flag = 881
itm_austrian_d_flag = 882
itm_austrian_e_flag = 883
itm_prussia_old_brandenburg_flag = 884
itm_prussia_brunswick_artillery_flag = 885
itm_prussia_brunswick_colonel_flag = 886
itm_prussia_brandenburg_flag = 887
itm_savoy_regimental_flag = 888
itm_poland_lithuania_flag = 889
itm_saxon_flag = 890
itm_saxon_a_flag = 891
itm_saxon_b_flag = 892
itm_saxon_c_flag = 893
itm_denmark_a_flag = 894
itm_denmark_b_flag = 895
itm_denmark_c_flag = 896
itm_denmark_d_flag = 897
itm_denmark_e_flag = 898
itm_sweden_flag = 899
itm_sweden_a_flag = 900
itm_sweden_b_flag = 901
itm_sweden_c_flag = 902
itm_sweden_d_flag = 903
itm_sweden_e_flag = 904
itm_russia_ryskt_flag = 905
itm_russia_och_regiment_flag = 906
itm_russia_wachtov_regiment_flag = 907
itm_russia_imperial_flag = 908
itm_ottoman_flag_a = 909
itm_ottoman_flag_b = 910
itm_pike = 911
itm_ashwood_pike = 912
itm_spontoon = 913
itm_lance = 914
itm_heavy_lance = 915
itm_light_lance = 916
itm_panabas = 917
itm_scythe = 918
itm_halberd = 919
itm_german_hunting_spear = 920
itm_french_hunting_spear = 921
itm_english_hunting_spear = 922
itm_village_poleaxe_1 = 923
itm_village_poleaxe_2 = 924
itm_village_poleaxe_3 = 925
itm_village_poleaxe_4 = 926
itm_village_poleaxe_5 = 927
itm_shortened_spear = 928
itm_spear = 929
itm_war_spear = 930
itm_boar_spear = 931
itm_bardiche = 932
itm_pitch_fork = 933
itm_staff = 934
itm_quarter_staff = 935
itm_iron_staff = 936
itm_ramrod = 937
itm_linstock = 938
itm_torch = 939
itm_lyre = 940
itm_lute = 941
itm_ottoman_shield_1 = 942
itm_ottoman_shield_2 = 943
itm_ottoman_shield_3 = 944
itm_ottoman_shield_4 = 945
itm_ottoman_shield_5 = 946
itm_ottoman_shield_6 = 947
itm_ottoman_shield_7 = 948
itm_stones = 949
itm_jarid = 950
itm_jarid_melee = 951
itm_javelin = 952
itm_javelin_melee = 953
itm_throwing_spears = 954
itm_throwing_spear_melee = 955
itm_throwing_knives = 956
itm_throwing_daggers = 957
itm_arquebus = 958
itm_arquebus_melee = 959
itm_blunderbus = 960
itm_matchlock_a = 962
itm_matchlock_a_melee = 963
itm_matchlock_b = 964
itm_matchlock_b_melee = 965
itm_flintlock_rifle_a = 966
itm_flintlock_rifle_a_melee = 967
itm_long_flintlock_rifle_a = 968
itm_long_flintlock_rifle_a_melee = 969
itm_flintlock_pistol_a = 970
itm_flintlock_pistol_a_melee = 971
itm_english_dragoon_pistol = 972
itm_english_dragoon_pistol_melee = 973
itm_light_dragoon_pistol = 974
itm_light_dragoon_pistol_melee = 975
itm_prussian_pistol = 976
itm_prussian_pistol_melee = 977
itm_austrian_pistol = 978
itm_austrian_pistol_melee = 979
itm_spanish_cavalry_pistol = 980
itm_spanish_cavalry_pistol_melee = 981
itm_french_pistol = 982
itm_french_pistol_melee = 983
itm_pirates_pistol = 984
itm_pirates_pistol_melee = 985
itm_dueling_pistol_1 = 986
itm_dueling_pistol_1_melee = 987
itm_english_lock_pistol = 988
itm_english_lock_pistol_melee = 989
itm_queen_anne_pistol = 990
itm_queen_anne_pistol_melee = 991
itm_austrian_musket = 992
itm_austrian_musket_melee = 993
itm_charleville_musket = 994
itm_charleville_musket_melee = 995
itm_charleville_musket_bayonet = 996
itm_charleville_musket_bayonet_melee = 997
itm_charleville_carbine = 998
itm_charleville_carbine_melee = 999
itm_charleville_carbine_with_bayonet = 1000
itm_charleville_carbine_with_bayonet_melee = 1001
itm_hussar_carbine = 1002
itm_hussar_carbine_melee = 1003