@deafwave/osrs-botmaker-types 0.3.0 → 0.3.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/dist/src/types/java/Java.d.ts +8 -0
  2. package/dist/src/types/java/JavaImporter.d.ts +6 -0
  3. package/dist/src/types/java/awt/BorderLayout.d.ts +16 -0
  4. package/dist/src/types/java/awt/Color.d.ts +2 -0
  5. package/dist/src/types/java/awt/Component.d.ts +5 -0
  6. package/dist/src/types/java/awt/Container.d.ts +12 -0
  7. package/dist/src/types/java/awt/FlowLayout.d.ts +16 -0
  8. package/dist/src/types/java/awt/Font.d.ts +24 -0
  9. package/dist/src/types/java/awt/GradientPaint.d.ts +5 -0
  10. package/dist/src/types/java/awt/Graphics2D.d.ts +3 -1
  11. package/dist/src/types/java/awt/GridBagConstraints.d.ts +56 -0
  12. package/dist/src/types/java/awt/GridBagLayout.d.ts +13 -0
  13. package/dist/src/types/java/awt/Insets.d.ts +28 -0
  14. package/dist/src/types/java/awt/Polygon.d.ts +14 -0
  15. package/dist/src/types/java/awt/Rectangle.d.ts +18 -0
  16. package/dist/src/types/java/awt/ToolKit.d.ts +15 -0
  17. package/dist/src/types/java/awt/datatransfer/Clipboard.d.ts +40 -0
  18. package/dist/src/types/java/awt/datatransfer/ClipboardOwner.d.ts +14 -0
  19. package/dist/src/types/java/awt/datatransfer/DataFlavor.d.ts +33 -0
  20. package/dist/src/types/java/awt/datatransfer/StringSelection.d.ts +34 -0
  21. package/dist/src/types/java/awt/datatransfer/Transferable.d.ts +24 -0
  22. package/dist/src/types/java/awt/event/ActionListener.d.ts +6 -0
  23. package/dist/src/types/java/awt/event/ChangeListener.d.ts +6 -0
  24. package/dist/src/types/java/awt/event/DocumentListener.d.ts +28 -0
  25. package/dist/src/types/java/awt/event/FocusListener.d.ts +15 -0
  26. package/dist/src/types/java/awt/event/ItemListener.d.ts +11 -0
  27. package/dist/src/types/java/awt/event/KeyAdapter.d.ts +9 -0
  28. package/dist/src/types/java/awt/event/KeyEvent.d.ts +72 -8
  29. package/dist/src/types/java/awt/event/KeyListener.d.ts +7 -0
  30. package/dist/src/types/java/awt/event/MouseAdapter.d.ts +11 -0
  31. package/dist/src/types/java/awt/event/MouseListener.d.ts +11 -0
  32. package/dist/src/types/java/awt/event/WindowListener.d.ts +25 -0
  33. package/dist/src/types/java/awt/geom/AffineTransform.d.ts +47 -0
  34. package/dist/src/types/java/index.d.ts +65 -0
  35. package/dist/src/types/java/lang/Object.d.ts +18 -0
  36. package/dist/src/types/java/swing/Border.d.ts +7 -0
  37. package/dist/src/types/java/swing/BorderFactory.d.ts +18 -0
  38. package/dist/src/types/java/swing/BoxLayout.d.ts +11 -0
  39. package/dist/src/types/java/swing/CustomPanel.d.ts +5 -0
  40. package/dist/src/types/java/swing/DefaultListModel.d.ts +15 -0
  41. package/dist/src/types/java/swing/DefaultTableModel.d.ts +17 -0
  42. package/dist/src/types/java/swing/Icon.d.ts +11 -0
  43. package/dist/src/types/java/swing/JButton.d.ts +36 -0
  44. package/dist/src/types/java/swing/JCheckBox.d.ts +17 -0
  45. package/dist/src/types/java/swing/JComboBox.d.ts +25 -0
  46. package/dist/src/types/java/swing/JComponent.d.ts +20 -0
  47. package/dist/src/types/java/swing/JFrame.d.ts +31 -0
  48. package/dist/src/types/java/swing/JLabel.d.ts +27 -0
  49. package/dist/src/types/java/swing/JList.d.ts +22 -0
  50. package/dist/src/types/java/swing/JMenu.d.ts +13 -0
  51. package/dist/src/types/java/swing/JMenuBar.d.ts +11 -0
  52. package/dist/src/types/java/swing/JMenuItem.d.ts +12 -0
  53. package/dist/src/types/java/swing/JPanel.d.ts +33 -0
  54. package/dist/src/types/java/swing/JProgressBar.d.ts +18 -0
  55. package/dist/src/types/java/swing/JScrollPane.d.ts +28 -0
  56. package/dist/src/types/java/swing/JSlider.d.ts +24 -0
  57. package/dist/src/types/java/swing/JSplitPane.d.ts +22 -0
  58. package/dist/src/types/java/swing/JTabbedPane.d.ts +16 -0
  59. package/dist/src/types/java/swing/JTable.d.ts +27 -0
  60. package/dist/src/types/java/swing/JTextArea.d.ts +29 -0
  61. package/dist/src/types/java/swing/JTextField.d.ts +24 -0
  62. package/dist/src/types/java/swing/JToggleButton.d.ts +8 -0
  63. package/dist/src/types/java/swing/JToolBar.d.ts +14 -0
  64. package/dist/src/types/java/swing/ListSelectionModel.d.ts +18 -0
  65. package/dist/src/types/java/swing/TableModel.d.ts +34 -0
  66. package/dist/src/types/java/swing/createToggleboxDropdownPanel.d.ts +10 -0
  67. package/dist/src/types/java/swing/event/ListSelectionEvent.d.ts +10 -0
  68. package/dist/src/types/java/swing/event/ListSelectionListener.d.ts +5 -0
  69. package/dist/src/types/java/swing/table/DefaultTableCellRenderer.d.ts +18 -0
  70. package/dist/src/types/java/swing/table/TableColumn.d.ts +5 -0
  71. package/dist/src/types/java/swing/table/TableColumnModel.d.ts +5 -0
  72. package/dist/src/types/java/util/index.d.ts +90 -53
  73. package/dist/src/types/runelite/net/runelite/api/AnimationID.d.ts +90 -22
  74. package/dist/src/types/runelite/net/runelite/api/EnumID.d.ts +21 -0
  75. package/dist/src/types/runelite/net/runelite/api/ItemID.d.ts +730 -22
  76. package/dist/src/types/runelite/net/runelite/api/KeyCode.d.ts +99 -6
  77. package/dist/src/types/runelite/net/runelite/api/NpcID.d.ts +1222 -45
  78. package/dist/src/types/runelite/net/runelite/api/ObjectID.d.ts +2500 -208
  79. package/dist/src/types/runelite/net/runelite/api/ParamID.d.ts +163 -0
  80. package/dist/src/types/runelite/net/runelite/api/ScriptID.d.ts +96 -7
  81. package/dist/src/types/runelite/net/runelite/api/SpriteID.d.ts +139 -9
  82. package/dist/src/types/runelite/net/runelite/api/coords/WorldPoint.d.ts +16 -72
  83. package/dist/src/types/runelite/net/runelite/api/widgets/ComponentID.d.ts +80 -1789
  84. package/dist/src/types/runelite/net/runelite/api/widgets/WidgetID.d.ts +155 -157
  85. package/dist/src/types/runelite/net/runelite/client/config/ConfigManager.d.ts +101 -112
  86. package/dist/src/types/sox/api/bot.d.ts +93 -4
  87. package/dist/src/types/sox/index.d.ts +45 -2
  88. package/package.json +53 -53
@@ -118,11 +118,6 @@ declare namespace net.runelite.api {
118
118
  static readonly WOLF_116 = 116;
119
119
  static readonly WOLF_117 = 117;
120
120
  static readonly IGNATIUS_VULCAN = 118;
121
- static readonly CRAWLING_HAND = 120;
122
- static readonly COCKATRICE = 121;
123
- static readonly BASILISK = 122;
124
- static readonly KURASK = 123;
125
- static readonly ABYSSAL_DEMON = 124;
126
121
  static readonly LEFT_HEAD = 125;
127
122
  static readonly MIDDLE_HEAD = 126;
128
123
  static readonly RIGHT_HEAD = 127;
@@ -304,7 +299,7 @@ declare namespace net.runelite.api {
304
299
  static readonly EMBLEM_TRADER = 308;
305
300
  static readonly REACHER = 309;
306
301
  static readonly AYESHA = 310;
307
- static readonly IRON_MAN_TUTOR = 311;
302
+ static readonly IRONMAN_TUTOR = 311;
308
303
  static readonly FROG = 312;
309
304
  static readonly REACHER_313 = 313;
310
305
  static readonly DR_JEKYLL_314 = 314;
@@ -381,8 +376,8 @@ declare namespace net.runelite.api {
381
376
  static readonly REACHER_389 = 389;
382
377
  static readonly EVIL_BOB = 390;
383
378
  static readonly EVIL_BOB_391 = 391;
384
- static readonly SERVANT = 392;
385
- static readonly SERVANT_393 = 393;
379
+ static readonly TROTTERS = 392;
380
+ static readonly SERVANT = 393;
386
381
  static readonly ROD_FISHING_SPOT = 394;
387
382
  static readonly CAT = 395;
388
383
  static readonly JON = 396;
@@ -390,25 +385,22 @@ declare namespace net.runelite.api {
390
385
  static readonly GUARD_398 = 398;
391
386
  static readonly GUARD_399 = 399;
392
387
  static readonly GUARD_400 = 400;
393
- static readonly TURAEL = 401;
394
- static readonly MAZCHNA = 402;
395
388
  static readonly VANNAKA = 403;
396
389
  static readonly CHAELDAR = 404;
397
- static readonly DURADEL = 405;
398
390
  static readonly CAVE_CRAWLER = 406;
399
391
  static readonly CAVE_CRAWLER_407 = 407;
400
392
  static readonly CAVE_CRAWLER_408 = 408;
401
393
  static readonly CAVE_CRAWLER_409 = 409;
402
- static readonly KURASK_410 = 410;
394
+ static readonly KURASK = 410;
403
395
  static readonly KURASK_411 = 411;
404
396
  static readonly GARGOYLE = 412;
405
397
  static readonly GARGOYLE_413 = 413;
406
398
  static readonly BANSHEE = 414;
407
- static readonly ABYSSAL_DEMON_415 = 415;
399
+ static readonly ABYSSAL_DEMON = 415;
408
400
  static readonly ABYSSAL_DEMON_416 = 416;
409
- static readonly BASILISK_417 = 417;
401
+ static readonly BASILISK = 417;
410
402
  static readonly BASILISK_418 = 418;
411
- static readonly COCKATRICE_419 = 419;
403
+ static readonly COCKATRICE = 419;
412
404
  static readonly COCKATRICE_420 = 420;
413
405
  static readonly ROCKSLUG = 421;
414
406
  static readonly ROCKSLUG_422 = 422;
@@ -436,7 +428,7 @@ declare namespace net.runelite.api {
436
428
  static readonly INFERNAL_MAGE_445 = 445;
437
429
  static readonly INFERNAL_MAGE_446 = 446;
438
430
  static readonly INFERNAL_MAGE_447 = 447;
439
- static readonly CRAWLING_HAND_448 = 448;
431
+ static readonly CRAWLING_HAND = 448;
440
432
  static readonly CRAWLING_HAND_449 = 449;
441
433
  static readonly CRAWLING_HAND_450 = 450;
442
434
  static readonly CRAWLING_HAND_451 = 451;
@@ -749,8 +741,8 @@ declare namespace net.runelite.api {
749
741
  static readonly SKRAELING_774 = 774;
750
742
  static readonly FISHMONGER = 775;
751
743
  static readonly GREENGROCER = 776;
752
- static readonly ETHEREAL_MAN = 777;
753
- static readonly ETHEREAL_LADY = 778;
744
+ static readonly ETHEREAL_BEING = 777;
745
+ static readonly ETHEREAL_BEING_778 = 778;
754
746
  static readonly ETHEREAL_NUMERATOR = 779;
755
747
  static readonly ETHEREAL_EXPERT = 780;
756
748
  static readonly ETHEREAL_PERCEPTIVE = 781;
@@ -1010,7 +1002,7 @@ declare namespace net.runelite.api {
1010
1002
  static readonly CAVE_HORROR_1050 = 1050;
1011
1003
  static readonly CAVE_HORROR_1051 = 1051;
1012
1004
  static readonly CAVEY_DAVEY = 1052;
1013
- static readonly PATCHY = 1053;
1005
+ static readonly MAC = 1053;
1014
1006
  static readonly LAUNA = 1054;
1015
1007
  static readonly LAUNA_1055 = 1055;
1016
1008
  static readonly BRANA = 1056;
@@ -2272,8 +2264,6 @@ declare namespace net.runelite.api {
2272
2264
  static readonly ANIMATED_MITHRIL_ARMOUR = 2454;
2273
2265
  static readonly ANIMATED_ADAMANT_ARMOUR = 2455;
2274
2266
  static readonly ANIMATED_RUNE_ARMOUR = 2456;
2275
- static readonly GHOMMAL = 2457;
2276
- static readonly HARRALLAK_MENAROUS = 2458;
2277
2267
  static readonly GAMFRED = 2459;
2278
2268
  static readonly AJJAT = 2460;
2279
2269
  static readonly KAMFREENA = 2461;
@@ -2288,7 +2278,6 @@ declare namespace net.runelite.api {
2288
2278
  static readonly LILLY = 2470;
2289
2279
  static readonly ANTON = 2471;
2290
2280
  static readonly JADE = 2472;
2291
- static readonly SLOANE = 2473;
2292
2281
  static readonly CATABLEPON = 2474;
2293
2282
  static readonly CATABLEPON_2475 = 2475;
2294
2283
  static readonly CATABLEPON_2476 = 2476;
@@ -2982,7 +2971,7 @@ declare namespace net.runelite.api {
2982
2971
  static readonly LUNDERWIN = 3202;
2983
2972
  static readonly IRKSOL = 3203;
2984
2973
  static readonly FAIRY_3204 = 3204;
2985
- static readonly ZAMBO = 3205;
2974
+ static readonly SUROK_MAGIS = 3205;
2986
2975
  static readonly GEM_MERCHANT = 3207;
2987
2976
  static readonly BAKER = 3208;
2988
2977
  static readonly SPICE_SELLER = 3209;
@@ -3205,8 +3194,6 @@ declare namespace net.runelite.api {
3205
3194
  static readonly WILL_O_THE_WISP = 3440;
3206
3195
  static readonly WILL_O_THE_WISP_3441 = 3441;
3207
3196
  static readonly ALI_THE_DYER = 3442;
3208
- static readonly LUCIEN = 3443;
3209
- static readonly LUCIEN_3444 = 3444;
3210
3197
  static readonly GUARDIAN_OF_ARMADYL = 3445;
3211
3198
  static readonly GUARDIAN_OF_ARMADYL_3446 = 3446;
3212
3199
  static readonly WINELDA = 3447;
@@ -3893,7 +3880,7 @@ declare namespace net.runelite.api {
3893
3880
  static readonly GUARD_4156 = 4156;
3894
3881
  static readonly BURNTMEAT = 4157;
3895
3882
  static readonly RAT_BURGISS = 4158;
3896
- static readonly SUROK_MAGIS = 4159;
3883
+ static readonly SUROK_MAGIS_4159 = 4159;
3897
3884
  static readonly SUROK_MAGIS_4160 = 4160;
3898
3885
  static readonly ZAFF_4161 = 4161;
3899
3886
  static readonly ANNA_JONES = 4162;
@@ -4837,9 +4824,7 @@ declare namespace net.runelite.api {
4837
4824
  static readonly GOBLIN_5208 = 5208;
4838
4825
  static readonly CHARLIE_THE_TRAMP = 5209;
4839
4826
  static readonly KATRINE = 5210;
4840
- static readonly WEAPONSMASTER = 5211;
4841
4827
  static readonly STRAVEN = 5212;
4842
- static readonly JONNY_THE_BEARD = 5213;
4843
4828
  static readonly CURATOR_HAIG_HALEN = 5214;
4844
4829
  static readonly KING_ROALD_5215 = 5215;
4845
4830
  static readonly BENNY = 5216;
@@ -5038,8 +5023,8 @@ declare namespace net.runelite.api {
5038
5023
  static readonly FROG_5431 = 5431;
5039
5024
  static readonly FROG_5432 = 5432;
5040
5025
  static readonly CALEB_5433 = 5433;
5041
- static readonly FROG_PRINCE = 5434;
5042
- static readonly FROG_PRINCESS = 5435;
5026
+ static readonly LIGHT_CREATURE_5434 = 5434;
5027
+ static readonly LIGHT_CREATURE_5435 = 5435;
5043
5028
  static readonly NILES = 5436;
5044
5029
  static readonly MILES = 5437;
5045
5030
  static readonly GILES = 5438;
@@ -5373,7 +5358,6 @@ declare namespace net.runelite.api {
5373
5358
  static readonly BABY_MOLE = 5780;
5374
5359
  static readonly BABY_MOLE_5781 = 5781;
5375
5360
  static readonly BABY_MOLE_5782 = 5782;
5376
- static readonly LIGHT_CREATURE_5783 = 5783;
5377
5361
  static readonly LIGHT_CREATURE_5784 = 5784;
5378
5362
  static readonly JUNA = 5785;
5379
5363
  static readonly SIMON_TEMPLETON = 5786;
@@ -5450,7 +5434,7 @@ declare namespace net.runelite.api {
5450
5434
  static readonly SUMMONED_SOUL = 5867;
5451
5435
  static readonly SUMMONED_SOUL_5868 = 5868;
5452
5436
  static readonly SUMMONED_SOUL_5869 = 5869;
5453
- static readonly KEY_MASTER = 5870;
5437
+ static readonly PATCHY = 5870;
5454
5438
  static readonly KING_ARTHUR_5871 = 5871;
5455
5439
  static readonly BABY_GREEN_DRAGON_5872 = 5872;
5456
5440
  static readonly BABY_GREEN_DRAGON_5873 = 5873;
@@ -5867,7 +5851,7 @@ declare namespace net.runelite.api {
5867
5851
  static readonly RUFUS_6478 = 6478;
5868
5852
  static readonly EYE = 6479;
5869
5853
  static readonly EYE_6480 = 6480;
5870
- static readonly MAC = 6481;
5854
+ static readonly JACK_FROST = 6481;
5871
5855
  static readonly BOULDER_6482 = 6482;
5872
5856
  static readonly MONKEY_6483 = 6483;
5873
5857
  static readonly GELIN = 6484;
@@ -6474,7 +6458,6 @@ declare namespace net.runelite.api {
6474
6458
  static readonly MANIACAL_MONKEY_7215 = 7215;
6475
6459
  static readonly MANIACAL_MONKEY_7216 = 7216;
6476
6460
  static readonly SCURRY = 7219;
6477
- static readonly RAT_BOSS_TEST_NPC = 7220;
6478
6461
  static readonly SCURRIUS = 7221;
6479
6462
  static readonly SCURRIUS_7222 = 7222;
6480
6463
  static readonly GIANT_RAT_7223 = 7223;
@@ -7094,7 +7077,7 @@ declare namespace net.runelite.api {
7094
7077
  static readonly REVENANT_DARK_BEAST = 7938;
7095
7078
  static readonly REVENANT_KNIGHT = 7939;
7096
7079
  static readonly REVENANT_DRAGON = 7940;
7097
- static readonly IRON_MAN_TUTOR_7941 = 7941;
7080
+ static readonly IRONMAN_TUTOR_7941 = 7941;
7098
7081
  static readonly EMBLEM_TRADER_7943 = 7943;
7099
7082
  static readonly FISHING_SPOT_7946 = 7946;
7100
7083
  static readonly FISHING_SPOT_7947 = 7947;
@@ -8384,7 +8367,7 @@ declare namespace net.runelite.api {
8384
8367
  static readonly GIANT_RAT_9483 = 9483;
8385
8368
  static readonly BANKER_9484 = 9484;
8386
8369
  static readonly BROTHER_BRACE_9485 = 9485;
8387
- static readonly IRON_MAN_TUTOR_9486 = 9486;
8370
+ static readonly IRONMAN_TUTOR_9486 = 9486;
8388
8371
  static readonly MAGIC_INSTRUCTOR_9487 = 9487;
8389
8372
  static readonly CHICKEN_9488 = 9488;
8390
8373
  static readonly VELIAF_HURTZ_9489 = 9489;
@@ -8778,7 +8761,7 @@ declare namespace net.runelite.api {
8778
8761
  static readonly CAPTAIN_ERRDO_10471 = 10471;
8779
8762
  static readonly CAPTAIN_ERRDO_10472 = 10472;
8780
8763
  static readonly CAPTAIN_ERRDO_10473 = 10473;
8781
- static readonly LEAGUES_ASSISTANT = 10476;
8764
+ static readonly BRAN = 10476;
8782
8765
  static readonly THESSALIA = 10477;
8783
8766
  static readonly THESSALIA_10478 = 10478;
8784
8767
  static readonly CAPTAIN_KLEMFOODLE = 10479;
@@ -9367,9 +9350,9 @@ declare namespace net.runelite.api {
9367
9350
  static readonly VYREWATCH_11171 = 11171;
9368
9351
  static readonly VYREWATCH_11172 = 11172;
9369
9352
  static readonly VYREWATCH_11173 = 11173;
9370
- static readonly SPIDER_11174 = 11174;
9371
- static readonly SPIDER_11175 = 11175;
9372
- static readonly SPIDER_11176 = 11176;
9353
+ static readonly ARAXYTE = 11174;
9354
+ static readonly ARAXYTE_11175 = 11175;
9355
+ static readonly ARAXYTE_11176 = 11176;
9373
9356
  static readonly RANIS_DRAKAN_11177 = 11177;
9374
9357
  static readonly VERZIK_VITUR_11178 = 11178;
9375
9358
  static readonly VERZIK_VITUR_11179 = 11179;
@@ -9411,10 +9394,10 @@ declare namespace net.runelite.api {
9411
9394
  static readonly R0CK_5MASHER = 11228;
9412
9395
  static readonly REGENT = 11229;
9413
9396
  static readonly GROUP_STORAGE_TUTOR = 11230;
9414
- static readonly GROUP_IRON_TUTOR = 11231;
9397
+ static readonly GROUP_IRONMAN_TUTOR = 11231;
9415
9398
  static readonly THE_SAGE = 11232;
9416
9399
  static readonly LEAGUE_TUTOR = 11233;
9417
- static readonly LEAGUES_ASSISTANT_11234 = 11234;
9400
+ static readonly LEAGUES_ASSISTANT = 11234;
9418
9401
  static readonly DUST_DEVIL_11238 = 11238;
9419
9402
  static readonly ABYSSAL_DEMON_11239 = 11239;
9420
9403
  static readonly GREATER_NECHRYAEL_11240 = 11240;
@@ -10556,12 +10539,14 @@ declare namespace net.runelite.api {
10556
10539
  static readonly BLOODTHIRSTY_HYDRA = 12588;
10557
10540
  static readonly MUSPAH = 12590;
10558
10541
  static readonly THE_LEVIATHAN_12591 = 12591;
10559
- static readonly THE_SAGE_12592 = 12592;
10560
- static readonly LEAGUES_ASSISTANT_12593 = 12593;
10542
+ static readonly RIC = 12592;
10543
+ static readonly BRAN_12593 = 12593;
10561
10544
  static readonly JALIMKOT_12594 = 12594;
10545
+ static readonly RIC_12595 = 12595;
10546
+ static readonly BRANDA_THE_FIRE_QUEEN = 12596;
10562
10547
  static readonly GOOSE = 12597;
10563
10548
  static readonly ANTISANTA = 12598;
10564
- static readonly JACK_FROST = 12599;
10549
+ static readonly KEY_MASTER = 12599;
10565
10550
  static readonly GUSS_MISTLETOAD = 12600;
10566
10551
  static readonly SANTAS_SCRIBE = 12601;
10567
10552
  static readonly SANTA_CLAUS = 12602;
@@ -10719,5 +10704,1197 @@ declare namespace net.runelite.api {
10719
10704
  static readonly ARMOURED_ZOMBIE_12762 = 12762;
10720
10705
  static readonly ARMOURED_ZOMBIE_12763 = 12763;
10721
10706
  static readonly ARMOURED_ZOMBIE_12764 = 12764;
10707
+ static readonly TOOL_LEPRECHAUN_12765 = 12765;
10708
+ static readonly HARMINIA = 12766;
10709
+ static readonly SMOL_HEREDIT = 12767;
10710
+ static readonly QUETZIN = 12768;
10711
+ static readonly TECU_SALAMANDER = 12769;
10712
+ static readonly SUNLIGHT_MOTH = 12770;
10713
+ static readonly MOONLIGHT_MOTH = 12771;
10714
+ static readonly MOONLIGHT_MOTH_12772 = 12772;
10715
+ static readonly MOONLIGHT_MOTH_12773 = 12773;
10716
+ static readonly ROD_FISHING_SPOT_12774 = 12774;
10717
+ static readonly FISHING_SPOT_12775 = 12775;
10718
+ static readonly FISHING_SPOT_12776 = 12776;
10719
+ static readonly FISHING_SPOT_12777 = 12777;
10720
+ static readonly FISHING_SPOT_12778 = 12778;
10721
+ static readonly TRADER_STAN_12779 = 12779;
10722
+ static readonly TRADER_STAN_12780 = 12780;
10723
+ static readonly TRADER_STAN_12781 = 12781;
10724
+ static readonly TRADER_STAN_12782 = 12782;
10725
+ static readonly TRADER_CREWMEMBER_12783 = 12783;
10726
+ static readonly TRADER_CREWMEMBER_12784 = 12784;
10727
+ static readonly TRADER_CREWMEMBER_12785 = 12785;
10728
+ static readonly TRADER_CREWMEMBER_12786 = 12786;
10729
+ static readonly TRADER_CREWMEMBER_12787 = 12787;
10730
+ static readonly TRADER_CREWMEMBER_12788 = 12788;
10731
+ static readonly TRADER_CREWMEMBER_12789 = 12789;
10732
+ static readonly TRADER_CREWMEMBER_12790 = 12790;
10733
+ static readonly TRADER_CREWMEMBER_12791 = 12791;
10734
+ static readonly TRADER_CREWMEMBER_12792 = 12792;
10735
+ static readonly TRADER_CREWMEMBER_12793 = 12793;
10736
+ static readonly TRADER_CREWMEMBER_12794 = 12794;
10737
+ static readonly TRADER_CREWMEMBER_12795 = 12795;
10738
+ static readonly TRADER_CREWMEMBER_12796 = 12796;
10739
+ static readonly TRADER_CREWMEMBER_12797 = 12797;
10740
+ static readonly TRADER_CREWMEMBER_12798 = 12798;
10741
+ static readonly TRADER_CREWMEMBER_12799 = 12799;
10742
+ static readonly TRADER_CREWMEMBER_12800 = 12800;
10743
+ static readonly TRADER_CREWMEMBER_12801 = 12801;
10744
+ static readonly TRADER_CREWMEMBER_12802 = 12802;
10745
+ static readonly TRADER_CREWMEMBER_12803 = 12803;
10746
+ static readonly TRADER_CREWMEMBER_12804 = 12804;
10747
+ static readonly TRADER_CREWMEMBER_12805 = 12805;
10748
+ static readonly TRADER_CREWMEMBER_12806 = 12806;
10749
+ static readonly MINIMUS = 12807;
10750
+ static readonly MINIMUS_12808 = 12808;
10751
+ static readonly GLORIA = 12809;
10752
+ static readonly JAGUAR_WARRIOR = 12810;
10753
+ static readonly SERPENT_SHAMAN = 12811;
10754
+ static readonly MINOTAUR_12812 = 12812;
10755
+ static readonly MINOTAUR_12813 = 12813;
10756
+ static readonly FREMENNIK_WARBAND_ARCHER = 12814;
10757
+ static readonly FREMENNIK_WARBAND_SEER = 12815;
10758
+ static readonly FREMENNIK_WARBAND_BERSERKER = 12816;
10759
+ static readonly JAVELIN_COLOSSUS = 12817;
10760
+ static readonly MANTICORE = 12818;
10761
+ static readonly SHOCKWAVE_COLOSSUS = 12819;
10762
+ static readonly PILLAR = 12820;
10763
+ static readonly SOL_HEREDIT = 12821;
10764
+ static readonly DOOM_SCORPION = 12822;
10765
+ static readonly BEE_SWARM = 12823;
10766
+ static readonly HEALING_TOTEM = 12825;
10767
+ static readonly SOL_HEREDIT_12827 = 12827;
10768
+ static readonly PASSIONATE_SUPPORTER = 12833;
10769
+ static readonly GLADIATOR_12834 = 12834;
10770
+ static readonly GLADIATOR_12835 = 12835;
10771
+ static readonly GLADIATOR_12836 = 12836;
10772
+ static readonly GLADIATOR_12837 = 12837;
10773
+ static readonly GLADIATOR_12838 = 12838;
10774
+ static readonly GLADIATOR_12839 = 12839;
10775
+ static readonly GLADIATOR_12840 = 12840;
10776
+ static readonly GLADIATOR_12841 = 12841;
10777
+ static readonly GLADIATOR_12842 = 12842;
10778
+ static readonly DUELIST = 12843;
10779
+ static readonly MOSS_GIANT_12844 = 12844;
10780
+ static readonly MOSS_GIANT_12845 = 12845;
10781
+ static readonly MOSS_GIANT_12846 = 12846;
10782
+ static readonly MOSS_GIANT_12847 = 12847;
10783
+ static readonly HILL_GIANT_12848 = 12848;
10784
+ static readonly HILL_GIANT_12849 = 12849;
10785
+ static readonly HILL_GIANT_12850 = 12850;
10786
+ static readonly RABBIT_12851 = 12851;
10787
+ static readonly RABBIT_12852 = 12852;
10788
+ static readonly RABBIT_12853 = 12853;
10789
+ static readonly SQUIRREL_12854 = 12854;
10790
+ static readonly SQUIRREL_12855 = 12855;
10791
+ static readonly SQUIRREL_12856 = 12856;
10792
+ static readonly SMOL_HEREDIT_12857 = 12857;
10793
+ static readonly QUETZIN_12858 = 12858;
10794
+ static readonly ZUMA = 12859;
10795
+ static readonly ZUMA_12860 = 12860;
10796
+ static readonly ATTALA = 12861;
10797
+ static readonly JESSAMINE = 12862;
10798
+ static readonly JESSAMINE_12865 = 12865;
10799
+ static readonly EYATLALLI = 12869;
10800
+ static readonly EYATLALLI_12870 = 12870;
10801
+ static readonly BUILDER_12872 = 12872;
10802
+ static readonly BUILDER_12873 = 12873;
10803
+ static readonly BUILDER_12876 = 12876;
10804
+ static readonly BUILDER_12877 = 12877;
10805
+ static readonly SULPHUR_NAGUA = 12879;
10806
+ static readonly GUARD_12881 = 12881;
10807
+ static readonly BLACKSMITH = 12882;
10808
+ static readonly REGULUS_CENTO = 12883;
10809
+ static readonly REGULUS_CENTO_12884 = 12884;
10810
+ static readonly REGULUS_CENTO_12885 = 12885;
10811
+ static readonly QUETZAL = 12886;
10812
+ static readonly PRIMIO = 12887;
10813
+ static readonly PRIMIO_12888 = 12888;
10814
+ static readonly PRIMIO_12889 = 12889;
10815
+ static readonly FURIA_TULLUS_12890 = 12890;
10816
+ static readonly FURIA_TULLUS_12891 = 12891;
10817
+ static readonly ENNIUS_TULLUS_12892 = 12892;
10818
+ static readonly ENNIUS_TULLUS_12893 = 12893;
10819
+ static readonly METZLI_TEOKAN_OF_RANUL = 12894;
10820
+ static readonly METZLI_TEOKAN_OF_RANUL_12895 = 12895;
10821
+ static readonly PRINCE_ITZLA_ARKAN_12896 = 12896;
10822
+ static readonly PRINCE_ITZLA_ARKAN_12897 = 12897;
10823
+ static readonly PRINCE_ITZLA_ARKAN_12898 = 12898;
10824
+ static readonly SERVIUS_TEOKAN_OF_RALOS_12899 = 12899;
10825
+ static readonly SERVIUS_TEOKAN_OF_RALOS_12900 = 12900;
10826
+ static readonly SERVIUS_TEOKAN_OF_RALOS_12901 = 12901;
10827
+ static readonly KNIGHT_OF_VARLAMORE_12902 = 12902;
10828
+ static readonly KNIGHT_OF_VARLAMORE_12903 = 12903;
10829
+ static readonly KNIGHT_OF_VARLAMORE_12904 = 12904;
10830
+ static readonly KNIGHT_OF_VARLAMORE_12905 = 12905;
10831
+ static readonly KNIGHT_OF_VARLAMORE_12906 = 12906;
10832
+ static readonly KNIGHT_OF_VARLAMORE_12907 = 12907;
10833
+ static readonly KNIGHT_OF_VARLAMORE_12908 = 12908;
10834
+ static readonly KNIGHT_OF_VARLAMORE_12909 = 12909;
10835
+ static readonly KNIGHT_OF_VARLAMORE_12910 = 12910;
10836
+ static readonly KNIGHT_OF_VARLAMORE_12911 = 12911;
10837
+ static readonly KNIGHT_OF_VARLAMORE_12912 = 12912;
10838
+ static readonly KNIGHT_OF_VARLAMORE_12913 = 12913;
10839
+ static readonly KNIGHT_OF_VARLAMORE_12914 = 12914;
10840
+ static readonly KNIGHT_OF_VARLAMORE_12915 = 12915;
10841
+ static readonly KNIGHT_OF_VARLAMORE_12916 = 12916;
10842
+ static readonly KNIGHT_OF_VARLAMORE_12917 = 12917;
10843
+ static readonly CULTIST = 12918;
10844
+ static readonly CULTIST_12919 = 12919;
10845
+ static readonly CULTIST_12920 = 12920;
10846
+ static readonly CULTIST_12921 = 12921;
10847
+ static readonly CULTIST_12922 = 12922;
10848
+ static readonly CULTIST_12923 = 12923;
10849
+ static readonly GUARD_12924 = 12924;
10850
+ static readonly GUARD_12925 = 12925;
10851
+ static readonly GUARD_12926 = 12926;
10852
+ static readonly GUARD_12927 = 12927;
10853
+ static readonly GUARD_12928 = 12928;
10854
+ static readonly CITIZEN_12929 = 12929;
10855
+ static readonly FOUNTAIN = 12930;
10856
+ static readonly INJURED_HUNTER = 12931;
10857
+ static readonly GUILD_HUNTER_FOX = 12932;
10858
+ static readonly ATZA = 12933;
10859
+ static readonly GUILD_HUNTER_KIKO = 12934;
10860
+ static readonly MARCELLUS = 12935;
10861
+ static readonly MARCELLUS_12936 = 12936;
10862
+ static readonly FROG_12937 = 12937;
10863
+ static readonly FROG_12938 = 12938;
10864
+ static readonly GARY = 12939;
10865
+ static readonly GARY_12940 = 12940;
10866
+ static readonly FROG_12941 = 12941;
10867
+ static readonly FROG_12942 = 12942;
10868
+ static readonly DAVE_12943 = 12943;
10869
+ static readonly DAVE_12944 = 12944;
10870
+ static readonly FROG_12945 = 12945;
10871
+ static readonly FROG_12946 = 12946;
10872
+ static readonly SUE = 12947;
10873
+ static readonly SUE_12948 = 12948;
10874
+ static readonly FROG_12949 = 12949;
10875
+ static readonly FROG_12950 = 12950;
10876
+ static readonly JANE = 12951;
10877
+ static readonly JANE_12952 = 12952;
10878
+ static readonly FROG_12953 = 12953;
10879
+ static readonly FROG_12954 = 12954;
10880
+ static readonly CUTHBERT = 12955;
10881
+ static readonly CUTHBERT_12956 = 12956;
10882
+ static readonly CUTHBERT_LORD_OF_DREAD = 12957;
10883
+ static readonly CAPYBARA = 12958;
10884
+ static readonly CAPYBARA_12959 = 12959;
10885
+ static readonly CAPYBARA_PUP = 12960;
10886
+ static readonly CAPYBARA_12961 = 12961;
10887
+ static readonly CAPYBARA_12962 = 12962;
10888
+ static readonly CAPYBARA_PUP_12963 = 12963;
10889
+ static readonly CAPYBARA_12964 = 12964;
10890
+ static readonly CAPYBARA_12965 = 12965;
10891
+ static readonly CAPYBARA_12966 = 12966;
10892
+ static readonly CAPYBARA_12967 = 12967;
10893
+ static readonly CAPYBARA_12968 = 12968;
10894
+ static readonly CAPYBARA_12969 = 12969;
10895
+ static readonly CAPYBARA_12970 = 12970;
10896
+ static readonly CAPYBARA_12971 = 12971;
10897
+ static readonly GREEN_SKINK = 12972;
10898
+ static readonly GREEN_SKINK_12973 = 12973;
10899
+ static readonly SUNBEAM_SKINK = 12974;
10900
+ static readonly SUNBEAM_SKINK_12975 = 12975;
10901
+ static readonly JAGUAR = 12976;
10902
+ static readonly JAGUAR_CUB = 12977;
10903
+ static readonly BLACK_JAGUAR = 12978;
10904
+ static readonly WHITE_JAGUAR = 12979;
10905
+ static readonly FENNEC_FOX = 12980;
10906
+ static readonly FENNEC_FOX_CUB = 12981;
10907
+ static readonly JERBOA = 12982;
10908
+ static readonly TOUCAN = 12983;
10909
+ static readonly TOUCAN_12984 = 12984;
10910
+ static readonly MOUNTAIN_TOUCAN = 12985;
10911
+ static readonly ALPACA = 12986;
10912
+ static readonly ALPACA_12987 = 12987;
10913
+ static readonly ALPACA_12988 = 12988;
10914
+ static readonly ALPACA_12989 = 12989;
10915
+ static readonly ALPACA_CRIA = 12990;
10916
+ static readonly ALPACA_CRIA_12991 = 12991;
10917
+ static readonly MOLOSSUS = 12992;
10918
+ static readonly MOLOSSUS_12993 = 12993;
10919
+ static readonly MOLOSSUS_12994 = 12994;
10920
+ static readonly MOLOSSUS_12995 = 12995;
10921
+ static readonly XOLO = 12996;
10922
+ static readonly XOLO_12997 = 12997;
10923
+ static readonly LOLA = 12998;
10924
+ static readonly MOLOSSUS_12999 = 12999;
10925
+ static readonly XOLO_13000 = 13000;
10926
+ static readonly SCORPION_13001 = 13001;
10927
+ static readonly SNAKE_13002 = 13002;
10928
+ static readonly HARPY_EAGLE = 13003;
10929
+ static readonly BUFFALO = 13004;
10930
+ static readonly BUFFALO_13005 = 13005;
10931
+ static readonly ORYX = 13006;
10932
+ static readonly FLIES_13007 = 13007;
10933
+ static readonly FLIES_13008 = 13008;
10934
+ static readonly GREEN_DRAGON_13010 = 13010;
10935
+ static readonly BLOOD_MOON = 13011;
10936
+ static readonly ECLIPSE_MOON = 13012;
10937
+ static readonly BLUE_MOON = 13013;
10938
+ static readonly MOON_SHIELD = 13020;
10939
+ static readonly BLOOD_JAGUAR = 13021;
10940
+ static readonly FROZEN_WEAPONS = 13025;
10941
+ static readonly CRACKED_ICE = 13026;
10942
+ static readonly MOSS_LIZARD = 13028;
10943
+ static readonly GRIMY_LIZARD = 13029;
10944
+ static readonly MOONLIGHT_COCKATRICE = 13030;
10945
+ static readonly WYRMLING = 13031;
10946
+ static readonly WYRMLING_13032 = 13032;
10947
+ static readonly SULPHUR_NAGUA_13033 = 13033;
10948
+ static readonly FROG_13034 = 13034;
10949
+ static readonly SHOPKEEPER = 13035;
10950
+ static readonly NAHTA = 13036;
10951
+ static readonly TIZORO = 13037;
10952
+ static readonly BLACKSMITH_13038 = 13038;
10953
+ static readonly YARNIO = 13039;
10954
+ static readonly CONARA = 13040;
10955
+ static readonly HUITO = 13041;
10956
+ static readonly SONALO = 13042;
10957
+ static readonly BARTENDER_13043 = 13043;
10958
+ static readonly BANKER_13044 = 13044;
10959
+ static readonly BANKER_13045 = 13045;
10960
+ static readonly BANKER_13046 = 13046;
10961
+ static readonly BANKER_13047 = 13047;
10962
+ static readonly GUARD_13048 = 13048;
10963
+ static readonly GUARD_13049 = 13049;
10964
+ static readonly GUARD_13050 = 13050;
10965
+ static readonly GUARD_13051 = 13051;
10966
+ static readonly GUARD_13052 = 13052;
10967
+ static readonly GUARD_13053 = 13053;
10968
+ static readonly GUARD_13054 = 13054;
10969
+ static readonly GUARD_13055 = 13055;
10970
+ static readonly GUARD_13056 = 13056;
10971
+ static readonly GUARD_13057 = 13057;
10972
+ static readonly GUARD_13058 = 13058;
10973
+ static readonly GUARD_13059 = 13059;
10974
+ static readonly GUARD_13060 = 13060;
10975
+ static readonly GUARD_13061 = 13061;
10976
+ static readonly GUARD_13062 = 13062;
10977
+ static readonly CITIZEN_13063 = 13063;
10978
+ static readonly CITIZEN_13064 = 13064;
10979
+ static readonly CITIZEN_13065 = 13065;
10980
+ static readonly CITIZEN_13066 = 13066;
10981
+ static readonly CITIZEN_13067 = 13067;
10982
+ static readonly CITIZEN_13068 = 13068;
10983
+ static readonly CITIZEN_13069 = 13069;
10984
+ static readonly CITIZEN_13070 = 13070;
10985
+ static readonly CITIZEN_13071 = 13071;
10986
+ static readonly CITIZEN_13072 = 13072;
10987
+ static readonly CITIZEN_13073 = 13073;
10988
+ static readonly CITIZEN_13074 = 13074;
10989
+ static readonly CITIZEN_13075 = 13075;
10990
+ static readonly CITIZEN_13076 = 13076;
10991
+ static readonly CITIZEN_13077 = 13077;
10992
+ static readonly CITIZEN_13078 = 13078;
10993
+ static readonly CITIZEN_13079 = 13079;
10994
+ static readonly CITIZEN_13080 = 13080;
10995
+ static readonly CITIZEN_13081 = 13081;
10996
+ static readonly CITIZEN_13082 = 13082;
10997
+ static readonly CHILD_13083 = 13083;
10998
+ static readonly CHILD_13084 = 13084;
10999
+ static readonly CHILD_13085 = 13085;
11000
+ static readonly CHILD_13086 = 13086;
11001
+ static readonly FUNBO = 13087;
11002
+ static readonly KALKO = 13088;
11003
+ static readonly WORKER_13089 = 13089;
11004
+ static readonly WORKER_13090 = 13090;
11005
+ static readonly WORKER_13091 = 13091;
11006
+ static readonly WORKER_13092 = 13092;
11007
+ static readonly WORKER_13093 = 13093;
11008
+ static readonly WORKER_13094 = 13094;
11009
+ static readonly WORKER_13095 = 13095;
11010
+ static readonly WORKER_13096 = 13096;
11011
+ static readonly CUICA = 13097;
11012
+ static readonly CALLIO = 13098;
11013
+ static readonly ATTALA_13099 = 13099;
11014
+ static readonly GUARD_13100 = 13100;
11015
+ static readonly GUARD_13101 = 13101;
11016
+ static readonly GUARD_13102 = 13102;
11017
+ static readonly GUARD_13103 = 13103;
11018
+ static readonly GUARD_13104 = 13104;
11019
+ static readonly GUARD_13105 = 13105;
11020
+ static readonly GUARD_13106 = 13106;
11021
+ static readonly GUARD_13107 = 13107;
11022
+ static readonly GUARD_13108 = 13108;
11023
+ static readonly GUARD_13109 = 13109;
11024
+ static readonly GUARD_13110 = 13110;
11025
+ static readonly GUARD_13111 = 13111;
11026
+ static readonly GUARD_13112 = 13112;
11027
+ static readonly GUARD_13113 = 13113;
11028
+ static readonly KNIGHT_OF_VARLAMORE_13114 = 13114;
11029
+ static readonly KNIGHT_OF_VARLAMORE_13115 = 13115;
11030
+ static readonly KNIGHT_OF_VARLAMORE_13116 = 13116;
11031
+ static readonly KNIGHT_OF_VARLAMORE_13117 = 13117;
11032
+ static readonly KNIGHT_OF_VARLAMORE_13118 = 13118;
11033
+ static readonly KNIGHT_OF_VARLAMORE_13119 = 13119;
11034
+ static readonly GUILDMASTER_APATURA = 13120;
11035
+ static readonly HUNTMASTER_GILMAN_NOVICE = 13121;
11036
+ static readonly GUILD_HUNTER_ORNUS_ADEPT = 13122;
11037
+ static readonly GUILD_HUNTER_CERVUS_ADEPT = 13123;
11038
+ static readonly GUILD_HUNTER_ACO_EXPERT = 13124;
11039
+ static readonly GUILD_HUNTER_TECO_EXPERT = 13125;
11040
+ static readonly GUILD_HUNTER_WOLF_MASTER = 13126;
11041
+ static readonly GUILD_SCRIBE_VERITY = 13127;
11042
+ static readonly BANK_BUFFALO = 13128;
11043
+ static readonly BANKER_13129 = 13129;
11044
+ static readonly PELLEM = 13130;
11045
+ static readonly IMIA = 13131;
11046
+ static readonly MOONLIGHT_ANTELOPE = 13132;
11047
+ static readonly SUNLIGHT_ANTELOPE = 13133;
11048
+ static readonly QUETZAL_13134 = 13134;
11049
+ static readonly SOAR_LEADER_PITRI = 13135;
11050
+ static readonly ORSAGA = 13136;
11051
+ static readonly ORSAGAS_CHINCHOMPA = 13137;
11052
+ static readonly PYRE_FOX = 13138;
11053
+ static readonly EMBERTAILED_JERBOA = 13139;
11054
+ static readonly METLA = 13140;
11055
+ static readonly WORKER_13141 = 13141;
11056
+ static readonly WORKER_13142 = 13142;
11057
+ static readonly WORKER_13143 = 13143;
11058
+ static readonly WORKER_13144 = 13144;
11059
+ static readonly AVINIA = 13145;
11060
+ static readonly BARD = 13146;
11061
+ static readonly BARD_13147 = 13147;
11062
+ static readonly BARD_13148 = 13148;
11063
+ static readonly WORKER_13149 = 13149;
11064
+ static readonly WORKER_13150 = 13150;
11065
+ static readonly WORKER_13151 = 13151;
11066
+ static readonly WORKER_13152 = 13152;
11067
+ static readonly WORKER_13153 = 13153;
11068
+ static readonly WORKER_13154 = 13154;
11069
+ static readonly WORKER_13155 = 13155;
11070
+ static readonly WORKER_13156 = 13156;
11071
+ static readonly RU_MERALD = 13157;
11072
+ static readonly PICARIA = 13158;
11073
+ static readonly SHOPKEEPER_13159 = 13159;
11074
+ static readonly THURID = 13160;
11075
+ static readonly REINN_13161 = 13161;
11076
+ static readonly INGA_13162 = 13162;
11077
+ static readonly ARNKEL = 13163;
11078
+ static readonly CITIZEN_13164 = 13164;
11079
+ static readonly CITIZEN_13165 = 13165;
11080
+ static readonly CITIZEN_13166 = 13166;
11081
+ static readonly CITIZEN_13167 = 13167;
11082
+ static readonly CITIZEN_13168 = 13168;
11083
+ static readonly CITIZEN_13169 = 13169;
11084
+ static readonly CITIZEN_13170 = 13170;
11085
+ static readonly CITIZEN_13171 = 13171;
11086
+ static readonly CITIZEN_13172 = 13172;
11087
+ static readonly CITIZEN_13173 = 13173;
11088
+ static readonly CHILD_13174 = 13174;
11089
+ static readonly CHILD_13175 = 13175;
11090
+ static readonly CHILD_13176 = 13176;
11091
+ static readonly CHILD_13177 = 13177;
11092
+ static readonly CITIZEN_13178 = 13178;
11093
+ static readonly CITIZEN_13179 = 13179;
11094
+ static readonly CITIZEN_13180 = 13180;
11095
+ static readonly CITIZEN_13181 = 13181;
11096
+ static readonly CITIZEN_13182 = 13182;
11097
+ static readonly CITIZEN_13183 = 13183;
11098
+ static readonly CITIZEN_13184 = 13184;
11099
+ static readonly CITIZEN_13185 = 13185;
11100
+ static readonly CITIZEN_13186 = 13186;
11101
+ static readonly CITIZEN_13187 = 13187;
11102
+ static readonly CHILD_13188 = 13188;
11103
+ static readonly CHILD_13189 = 13189;
11104
+ static readonly CHILD_13190 = 13190;
11105
+ static readonly CHILD_13191 = 13191;
11106
+ static readonly CITIZEN_13192 = 13192;
11107
+ static readonly CITIZEN_13193 = 13193;
11108
+ static readonly CITIZEN_13194 = 13194;
11109
+ static readonly CITIZEN_13195 = 13195;
11110
+ static readonly CITIZEN_13196 = 13196;
11111
+ static readonly CITIZEN_13197 = 13197;
11112
+ static readonly CITIZEN_13198 = 13198;
11113
+ static readonly CITIZEN_13199 = 13199;
11114
+ static readonly CITIZEN_13200 = 13200;
11115
+ static readonly CITIZEN_13201 = 13201;
11116
+ static readonly CITIZEN_13202 = 13202;
11117
+ static readonly CITIZEN_13203 = 13203;
11118
+ static readonly CITIZEN_13204 = 13204;
11119
+ static readonly CITIZEN_13205 = 13205;
11120
+ static readonly TOURIST = 13206;
11121
+ static readonly TOURIST_13207 = 13207;
11122
+ static readonly TOURIST_13208 = 13208;
11123
+ static readonly TOURIST_13209 = 13209;
11124
+ static readonly TOURIST_13210 = 13210;
11125
+ static readonly TOURIST_13211 = 13211;
11126
+ static readonly BANKER_13212 = 13212;
11127
+ static readonly BANKER_13213 = 13213;
11128
+ static readonly BANKER_13214 = 13214;
11129
+ static readonly BANKER_13215 = 13215;
11130
+ static readonly BANKER_13216 = 13216;
11131
+ static readonly BANKER_13217 = 13217;
11132
+ static readonly BANKER_13218 = 13218;
11133
+ static readonly BANKER_13219 = 13219;
11134
+ static readonly BANKER_13220 = 13220;
11135
+ static readonly BANKER_13221 = 13221;
11136
+ static readonly BANKER_13222 = 13222;
11137
+ static readonly BANKER_13223 = 13223;
11138
+ static readonly BANKER_13224 = 13224;
11139
+ static readonly BANKER_13225 = 13225;
11140
+ static readonly BANKER_13226 = 13226;
11141
+ static readonly BANKER_13227 = 13227;
11142
+ static readonly FARMER_13228 = 13228;
11143
+ static readonly FARMER_13229 = 13229;
11144
+ static readonly FARMER_13230 = 13230;
11145
+ static readonly FARMER_13231 = 13231;
11146
+ static readonly FARMER_13232 = 13232;
11147
+ static readonly FARMER_13233 = 13233;
11148
+ static readonly FARMER_13234 = 13234;
11149
+ static readonly FARMER_13235 = 13235;
11150
+ static readonly MASTER_FARMER_13236 = 13236;
11151
+ static readonly MASTER_FARMER_13237 = 13237;
11152
+ static readonly MASTER_FARMER_13238 = 13238;
11153
+ static readonly MASTER_FARMER_13239 = 13239;
11154
+ static readonly MASTER_FARMER_13240 = 13240;
11155
+ static readonly MASTER_FARMER_13241 = 13241;
11156
+ static readonly MASTER_FARMER_13242 = 13242;
11157
+ static readonly MASTER_FARMER_13243 = 13243;
11158
+ static readonly SQUIRE_13244 = 13244;
11159
+ static readonly SQUIRE_13245 = 13245;
11160
+ static readonly SQUIRE_13246 = 13246;
11161
+ static readonly SQUIRE_13247 = 13247;
11162
+ static readonly SAILOR_13248 = 13248;
11163
+ static readonly SAILOR_13249 = 13249;
11164
+ static readonly SAILOR_13250 = 13250;
11165
+ static readonly SAILOR_13251 = 13251;
11166
+ static readonly FISHER = 13252;
11167
+ static readonly FISHER_13253 = 13253;
11168
+ static readonly FISHER_13254 = 13254;
11169
+ static readonly FISHER_13255 = 13255;
11170
+ static readonly WORKER_13256 = 13256;
11171
+ static readonly WORKER_13257 = 13257;
11172
+ static readonly WORKER_13258 = 13258;
11173
+ static readonly WORKER_13259 = 13259;
11174
+ static readonly WORKER_13260 = 13260;
11175
+ static readonly WORKER_13261 = 13261;
11176
+ static readonly NELTA_OF_RALOS = 13262;
11177
+ static readonly NELTA_OF_RALOS_13263 = 13263;
11178
+ static readonly NELTA_OF_RALOS_13264 = 13264;
11179
+ static readonly NELTA_OF_RALOS_13265 = 13265;
11180
+ static readonly NELTA_OF_RALOS_13266 = 13266;
11181
+ static readonly NELTA_OF_RALOS_13267 = 13267;
11182
+ static readonly NELTA_OF_RALOS_13268 = 13268;
11183
+ static readonly NELTA_OF_RALOS_13269 = 13269;
11184
+ static readonly NELTA_OF_RALOS_13270 = 13270;
11185
+ static readonly NELTA_OF_RALOS_13271 = 13271;
11186
+ static readonly NELTA_OF_RANUL = 13272;
11187
+ static readonly NELTA_OF_RANUL_13273 = 13273;
11188
+ static readonly NELTA_OF_RANUL_13274 = 13274;
11189
+ static readonly NELTA_OF_RANUL_13275 = 13275;
11190
+ static readonly NELTA_OF_RANUL_13276 = 13276;
11191
+ static readonly NELTA_OF_RANUL_13277 = 13277;
11192
+ static readonly NELTA_OF_RANUL_13278 = 13278;
11193
+ static readonly NELTA_OF_RANUL_13279 = 13279;
11194
+ static readonly NELTA_OF_RANUL_13280 = 13280;
11195
+ static readonly NELTA_OF_RANUL_13281 = 13281;
11196
+ static readonly MUGGER_13282 = 13282;
11197
+ static readonly BANDIT_13283 = 13283;
11198
+ static readonly BANDIT_13284 = 13284;
11199
+ static readonly BANDIT_13285 = 13285;
11200
+ static readonly BANDIT_13286 = 13286;
11201
+ static readonly BANDIT_13287 = 13287;
11202
+ static readonly BANDIT_13288 = 13288;
11203
+ static readonly BANDIT_13289 = 13289;
11204
+ static readonly BANDIT_13290 = 13290;
11205
+ static readonly THIEF_13291 = 13291;
11206
+ static readonly THIEF_13292 = 13292;
11207
+ static readonly THIEF_13293 = 13293;
11208
+ static readonly THIEF_13294 = 13294;
11209
+ static readonly THIEF_13295 = 13295;
11210
+ static readonly THIEF_13296 = 13296;
11211
+ static readonly CURATOR_HERMINIUS = 13297;
11212
+ static readonly ACADEMIC = 13298;
11213
+ static readonly ACADEMIC_13299 = 13299;
11214
+ static readonly ACADEMIC_13300 = 13300;
11215
+ static readonly ACADEMIC_13301 = 13301;
11216
+ static readonly WEALTHY_CITIZEN = 13302;
11217
+ static readonly WEALTHY_CITIZEN_13303 = 13303;
11218
+ static readonly WEALTHY_CITIZEN_13304 = 13304;
11219
+ static readonly WEALTHY_CITIZEN_13305 = 13305;
11220
+ static readonly LEO_13306 = 13306;
11221
+ static readonly JULIA = 13307;
11222
+ static readonly AURELIA = 13308;
11223
+ static readonly CASSIUS = 13309;
11224
+ static readonly DODGY_CHARACTER = 13310;
11225
+ static readonly ORIANA = 13311;
11226
+ static readonly LAVINIA = 13312;
11227
+ static readonly VICTOR_13313 = 13313;
11228
+ static readonly CAIUS = 13314;
11229
+ static readonly RUFUS_13315 = 13315;
11230
+ static readonly AVA_13316 = 13316;
11231
+ static readonly LUCIA = 13317;
11232
+ static readonly OLI = 13318;
11233
+ static readonly HELVIA = 13319;
11234
+ static readonly WARDEN = 13320;
11235
+ static readonly PRISONER_13321 = 13321;
11236
+ static readonly PRISONER_13322 = 13322;
11237
+ static readonly GUARD_CAPTAIN_13323 = 13323;
11238
+ static readonly CUALI_TEOKI_OF_RALOS = 13324;
11239
+ static readonly HEGIO_TEOKI_OF_RANUL = 13325;
11240
+ static readonly FISHING_SPOT_13329 = 13329;
11241
+ static readonly SHOPKEEPER_13330 = 13330;
11242
+ static readonly SHOPKEEPER_13331 = 13331;
11243
+ static readonly BLACKSMITH_13332 = 13332;
11244
+ static readonly SPIKE = 13333;
11245
+ static readonly SILK_MERCHANT_13334 = 13334;
11246
+ static readonly FUR_MERCHANT = 13335;
11247
+ static readonly GEM_MERCHANT_13336 = 13336;
11248
+ static readonly SPICE_MERCHANT = 13337;
11249
+ static readonly BAKER_13338 = 13338;
11250
+ static readonly AGELUS = 13339;
11251
+ static readonly FLORIA = 13340;
11252
+ static readonly COBADO = 13341;
11253
+ static readonly ARTIMA = 13342;
11254
+ static readonly ESTATE_AGENT_13343 = 13343;
11255
+ static readonly BARTENDER_13344 = 13344;
11256
+ static readonly BARTENDER_13345 = 13345;
11257
+ static readonly VIRILIS = 13346;
11258
+ static readonly ZUMA_13347 = 13347;
11259
+ static readonly RENU = 13348;
11260
+ static readonly RENU_13349 = 13349;
11261
+ static readonly RENU_13350 = 13350;
11262
+ static readonly RENU_13351 = 13351;
11263
+ static readonly RENU_13352 = 13352;
11264
+ static readonly RENU_13353 = 13353;
11265
+ static readonly RENU_13354 = 13354;
11266
+ static readonly UEMAN_TEOKI_OF_RALOS = 13420;
11267
+ static readonly SEIA_TEOKI_OF_RANUL = 13421;
11268
+ static readonly HUNTER_GUILD_MEMBER = 13423;
11269
+ static readonly HUNTER_GUILD_MEMBER_13424 = 13424;
11270
+ static readonly BUFFALO_13425 = 13425;
11271
+ static readonly GUILD_HUNTER_FOX_13426 = 13426;
11272
+ static readonly RED_SKINK = 13427;
11273
+ static readonly RED_SKINK_13428 = 13428;
11274
+ static readonly LIGHT_CREATURE_13429 = 13429;
11275
+ static readonly HARRALLAK_MENAROUS = 13430;
11276
+ static readonly HARRALLAK_MENAROUS_13431 = 13431;
11277
+ static readonly HARRALLAK_MENAROUS_13432 = 13432;
11278
+ static readonly TURAEL = 13433;
11279
+ static readonly TURAEL_13434 = 13434;
11280
+ static readonly CYRISUS_13435 = 13435;
11281
+ static readonly CYRISUS_13436 = 13436;
11282
+ static readonly GHOMMAL = 13437;
11283
+ static readonly MAZCHNA = 13438;
11284
+ static readonly MAZCHNA_13439 = 13439;
11285
+ static readonly MAZCHNA_13440 = 13440;
11286
+ static readonly DURADEL = 13441;
11287
+ static readonly SIR_KIT_BREAKER = 13442;
11288
+ static readonly FROG_PRIN = 13443;
11289
+ static readonly FROG_PRIN_13444 = 13444;
11290
+ static readonly FROG_PRINCE = 13445;
11291
+ static readonly FROG_PRINCESS = 13446;
11292
+ static readonly SLOANE = 13447;
11293
+ static readonly HAZELMERE_13448 = 13448;
11294
+ static readonly HAZELMERE_13449 = 13449;
11295
+ static readonly HAZELMERE_13450 = 13450;
11296
+ static readonly HAZELMERE_13451 = 13451;
11297
+ static readonly HAZELMERES_HAT = 13452;
11298
+ static readonly UNDEAD_HERO = 13453;
11299
+ static readonly UNDEAD_HERO_13454 = 13454;
11300
+ static readonly UNDEAD_HERO_13455 = 13455;
11301
+ static readonly UNDEAD_HERO_13456 = 13456;
11302
+ static readonly UNDEAD_HERO_13457 = 13457;
11303
+ static readonly UNDEAD_HERO_13458 = 13458;
11304
+ static readonly UNDEAD_HERO_13459 = 13459;
11305
+ static readonly UNDEAD_HERO_13460 = 13460;
11306
+ static readonly UNDEAD_HERO_13461 = 13461;
11307
+ static readonly UNDEAD_HERO_13462 = 13462;
11308
+ static readonly ELITE_BLACK_KNIGHT = 13463;
11309
+ static readonly ELITE_BLACK_KNIGHT_13464 = 13464;
11310
+ static readonly ELITE_DARK_WARRIOR = 13465;
11311
+ static readonly ELITE_DARK_WARRIOR_13466 = 13466;
11312
+ static readonly ELITE_DARK_RANGER = 13467;
11313
+ static readonly ELITE_DARK_RANGER_13468 = 13468;
11314
+ static readonly ELITE_DARK_MAGE = 13469;
11315
+ static readonly ELITE_DARK_MAGE_13470 = 13470;
11316
+ static readonly UNDEAD_MAGE = 13471;
11317
+ static readonly SKELETON_13476 = 13476;
11318
+ static readonly SKELETON_13477 = 13477;
11319
+ static readonly SKELETON_13478 = 13478;
11320
+ static readonly SKELETON_13479 = 13479;
11321
+ static readonly ELITE_BLACK_KNIGHT_13480 = 13480;
11322
+ static readonly ELITE_BLACK_KNIGHT_13481 = 13481;
11323
+ static readonly SUROK_MAGIS_13482 = 13482;
11324
+ static readonly AGILE_WARRIOR = 13483;
11325
+ static readonly STRONG_WARRIOR = 13484;
11326
+ static readonly ENRAGED_BLOOD_MOON = 13485;
11327
+ static readonly ENRAGED_BLUE_MOON = 13486;
11328
+ static readonly ENRAGED_ECLIPSE_MOON = 13487;
11329
+ static readonly GREEN_DRAGON_13488 = 13488;
11330
+ static readonly ZOMBIE_PIRATE_13489 = 13489;
11331
+ static readonly ZOMBIE_PIRATE_13490 = 13490;
11332
+ static readonly ZOMBIE_PIRATE_13491 = 13491;
11333
+ static readonly ZOMBIE_PIRATE_13492 = 13492;
11334
+ static readonly ZOMBIE_PIRATE_13493 = 13493;
11335
+ static readonly ZOMBIE_PIRATE_13494 = 13494;
11336
+ static readonly SKELETON_13495 = 13495;
11337
+ static readonly SKELETON_13496 = 13496;
11338
+ static readonly SKELETON_13497 = 13497;
11339
+ static readonly SKELETON_13498 = 13498;
11340
+ static readonly SKELETON_13499 = 13499;
11341
+ static readonly SKELETON_13500 = 13500;
11342
+ static readonly SKELETON_13501 = 13501;
11343
+ static readonly HILL_GIANT_13502 = 13502;
11344
+ static readonly HILL_GIANT_13503 = 13503;
11345
+ static readonly HILL_GIANT_13504 = 13504;
11346
+ static readonly EARTH_SPELL = 13505;
11347
+ static readonly WATER_SPELL = 13506;
11348
+ static readonly FIRE_SPELL = 13507;
11349
+ static readonly WIND_SPELL = 13508;
11350
+ static readonly GUARDIAN_OF_ARMADYL_13509 = 13509;
11351
+ static readonly IVY_SOPHISTA = 13510;
11352
+ static readonly THAERISK = 13511;
11353
+ static readonly THAERISK_13512 = 13512;
11354
+ static readonly THAERISK_13513 = 13513;
11355
+ static readonly ASSASSIN_13514 = 13514;
11356
+ static readonly ASSASSIN_13515 = 13515;
11357
+ static readonly KHAZARD_LAUNDERER = 13516;
11358
+ static readonly WILD_BROAV = 13517;
11359
+ static readonly BROAV = 13518;
11360
+ static readonly SILIF = 13519;
11361
+ static readonly SILIF_13520 = 13520;
11362
+ static readonly SILIF_13521 = 13521;
11363
+ static readonly SILIF_13524 = 13524;
11364
+ static readonly LUCIEN = 13525;
11365
+ static readonly LUCIEN_13526 = 13526;
11366
+ static readonly LUCIEN_13527 = 13527;
11367
+ static readonly BALANCE_ELEMENTAL = 13528;
11368
+ static readonly BALANCE_ELEMENTAL_13529 = 13529;
11369
+ static readonly BALANCE_ELEMENTAL_13530 = 13530;
11370
+ static readonly ELITE_KHAZARD_GUARD = 13531;
11371
+ static readonly ELITE_KHAZARD_GUARD_13532 = 13532;
11372
+ static readonly ELITE_KHAZARD_GUARD_13533 = 13533;
11373
+ static readonly ELITE_KHAZARD_GUARD_13534 = 13534;
11374
+ static readonly MERCENARY_AXEMAN = 13535;
11375
+ static readonly MERCENARY_AXEMAN_13536 = 13536;
11376
+ static readonly MERCENARY_MAGE = 13537;
11377
+ static readonly GUARDIAN_OF_ARMADYL_13538 = 13538;
11378
+ static readonly GUARDIAN_OF_ARMADYL_13539 = 13539;
11379
+ static readonly IDRIA = 13540;
11380
+ static readonly IDRIA_13541 = 13541;
11381
+ static readonly IDRIA_13542 = 13542;
11382
+ static readonly AKRISAE = 13543;
11383
+ static readonly AKRISAE_13544 = 13544;
11384
+ static readonly SHADY_STRANGER = 13545;
11385
+ static readonly SHADY_STRANGER_13546 = 13546;
11386
+ static readonly SHADY_STRANGER_13547 = 13547;
11387
+ static readonly SUROK_MAGIS_13548 = 13548;
11388
+ static readonly SUROK_MAGIS_13549 = 13549;
11389
+ static readonly SUROK_MAGIS_13551 = 13551;
11390
+ static readonly DRUID_13552 = 13552;
11391
+ static readonly DRUID_13553 = 13553;
11392
+ static readonly DRUID_13554 = 13554;
11393
+ static readonly SUSPICIOUS_OUTSIDER = 13555;
11394
+ static readonly GHOMMAL_13556 = 13556;
11395
+ static readonly HARRALLAK_MENAROUS_13557 = 13557;
11396
+ static readonly SLOANE_13558 = 13558;
11397
+ static readonly CYRISUS_13559 = 13559;
11398
+ static readonly TURAEL_13560 = 13560;
11399
+ static readonly MAZCHNA_13561 = 13561;
11400
+ static readonly DURADEL_13562 = 13562;
11401
+ static readonly HAZELMERE_13563 = 13563;
11402
+ static readonly HAZELMERE_13564 = 13564;
11403
+ static readonly DARK_SQUALL = 13565;
11404
+ static readonly ELITE_BLACK_KNIGHT_13566 = 13566;
11405
+ static readonly MOVARIO_13567 = 13567;
11406
+ static readonly MOVARIO_13568 = 13568;
11407
+ static readonly MOVARIO_13569 = 13569;
11408
+ static readonly DARVE_13570 = 13570;
11409
+ static readonly DARVE_13571 = 13571;
11410
+ static readonly CAVE_GOBLIN_13572 = 13572;
11411
+ static readonly CAVE_GOBLIN_13574 = 13574;
11412
+ static readonly DRUID_SPIRIT = 13575;
11413
+ static readonly DRUID_SPIRIT_13576 = 13576;
11414
+ static readonly GUARDIAN_OF_ARMADYL_13577 = 13577;
11415
+ static readonly GUARDIAN_OF_ARMADYL_13578 = 13578;
11416
+ static readonly GUARDIAN_OF_ARMADYL_13579 = 13579;
11417
+ static readonly GUARDIAN_OF_ARMADYL_13580 = 13580;
11418
+ static readonly IDRIA_13581 = 13581;
11419
+ static readonly IDRIA_13582 = 13582;
11420
+ static readonly SITHAPH = 13583;
11421
+ static readonly SAKIRTH = 13584;
11422
+ static readonly STRISATH = 13585;
11423
+ static readonly STRANGE_TUBE = 13586;
11424
+ static readonly STRANGE_TUBE_13587 = 13587;
11425
+ static readonly STRANGE_TUBE_13588 = 13588;
11426
+ static readonly STRANGE_TUBE_13589 = 13589;
11427
+ static readonly STRANGE_TUBE_13590 = 13590;
11428
+ static readonly STRANGE_TUBE_13591 = 13591;
11429
+ static readonly STRANGE_TUBE_13592 = 13592;
11430
+ static readonly V = 13593;
11431
+ static readonly ROBERT_THE_STRONG_13594 = 13594;
11432
+ static readonly ROBERT_THE_STRONG_13595 = 13595;
11433
+ static readonly AIVAS_13596 = 13596;
11434
+ static readonly TRISTAN_13597 = 13597;
11435
+ static readonly CAMORRA_13598 = 13598;
11436
+ static readonly TORMENTED_DEMON = 13599;
11437
+ static readonly TORMENTED_DEMON_13600 = 13600;
11438
+ static readonly TORMENTED_DEMON_13601 = 13601;
11439
+ static readonly TORMENTED_DEMON_13602 = 13602;
11440
+ static readonly TORMENTED_DEMON_13603 = 13603;
11441
+ static readonly TORMENTED_DEMON_13604 = 13604;
11442
+ static readonly TORMENTED_DEMON_13605 = 13605;
11443
+ static readonly TORMENTED_DEMON_13606 = 13606;
11444
+ static readonly LUCIEN_13607 = 13607;
11445
+ static readonly LUCIEN_13608 = 13608;
11446
+ static readonly LUCIEN_13609 = 13609;
11447
+ static readonly DEBUG_MAN = 13611;
11448
+ static readonly DEBUG_WOMAN = 13612;
11449
+ static readonly GHOMMAL_13613 = 13613;
11450
+ static readonly LAIDEE_GNONOCK = 13614;
11451
+ static readonly HARRALLAK_MENAROUS_13615 = 13615;
11452
+ static readonly SLOANE_13616 = 13616;
11453
+ static readonly YADECH_STRONGARM = 13617;
11454
+ static readonly TURAEL_13618 = 13618;
11455
+ static readonly AYA = 13619;
11456
+ static readonly MAZCHNA_13620 = 13620;
11457
+ static readonly ACHTRYN = 13621;
11458
+ static readonly DURADEL_13622 = 13622;
11459
+ static readonly KURADAL = 13623;
11460
+ static readonly RAT_13624 = 13624;
11461
+ static readonly ZEMBO = 13655;
11462
+ static readonly VARDORVIS_13656 = 13656;
11463
+ static readonly CERBERUS_13657 = 13657;
11464
+ static readonly BEE_SWARM_13658 = 13658;
11465
+ static readonly THERMONUCLEAR_SMOKE_DEVIL_13659 = 13659;
11466
+ static readonly JAGUAR_WARRIOR_13660 = 13660;
11467
+ static readonly TZTOKJAD_13661 = 13661;
11468
+ static readonly DURIAL321 = 13662;
11469
+ static readonly MAGIC_MARK = 13663;
11470
+ static readonly RANGING_RO = 13664;
11471
+ static readonly BROAV_13665 = 13665;
11472
+ static readonly ARAXYTE_13666 = 13666;
11473
+ static readonly ARAXYTE_13667 = 13667;
11474
+ static readonly ARAXXOR = 13668;
11475
+ static readonly ARAXXOR_13669 = 13669;
11476
+ static readonly EGG_13670 = 13670;
11477
+ static readonly MIRRORBACK_ARAXYTE = 13671;
11478
+ static readonly EGG_13672 = 13672;
11479
+ static readonly RUPTURA_ARAXYTE = 13673;
11480
+ static readonly EGG_13674 = 13674;
11481
+ static readonly ACIDIC_ARAXYTE = 13675;
11482
+ static readonly WEAVE = 13677;
11483
+ static readonly ARANCINI = 13678;
11484
+ static readonly MAN_13679 = 13679;
11485
+ static readonly DREADBORN_ARAXYTE = 13680;
11486
+ static readonly NID = 13681;
11487
+ static readonly RAX = 13682;
11488
+ static readonly NID_13683 = 13683;
11489
+ static readonly RAX_13684 = 13684;
11490
+ static readonly AMOXLIATL = 13685;
11491
+ static readonly AMOXLIATL_13686 = 13686;
11492
+ static readonly AMOXLIATL_13687 = 13687;
11493
+ static readonly UNSTABLE_ICE = 13688;
11494
+ static readonly AMOXLIATL_13689 = 13689;
11495
+ static readonly PRINCE_ITZLA_ARKAN_13690 = 13690;
11496
+ static readonly PRINCE_ITZLA_ARKAN_13691 = 13691;
11497
+ static readonly PRINCE_ITZLA_ARKAN_13692 = 13692;
11498
+ static readonly PRINCE_ITZLA_ARKAN_13693 = 13693;
11499
+ static readonly SERVIUS_TEOKAN_OF_RALOS_13694 = 13694;
11500
+ static readonly QUEEN_ZYANYI_ARKAN_13695 = 13695;
11501
+ static readonly KUALTI_13696 = 13696;
11502
+ static readonly KUALTI_13697 = 13697;
11503
+ static readonly KUALTI_13698 = 13698;
11504
+ static readonly KUALTI_13699 = 13699;
11505
+ static readonly FELIUS = 13700;
11506
+ static readonly CARITTA = 13701;
11507
+ static readonly SERGIUS = 13702;
11508
+ static readonly SERGIUS_13703 = 13703;
11509
+ static readonly NOVA = 13704;
11510
+ static readonly NOVA_13705 = 13705;
11511
+ static readonly EMISSARY_ASCENDED = 13706;
11512
+ static readonly EMISSARY_ASCENDED_13707 = 13707;
11513
+ static readonly EMISSARY_ASCENDED_13708 = 13708;
11514
+ static readonly EMISSARY_ASCENDED_13709 = 13709;
11515
+ static readonly EMISSARY_ASCENDED_13710 = 13710;
11516
+ static readonly EMISSARY_ASCENDED_13711 = 13711;
11517
+ static readonly EMISSARY_ASCENDED_13712 = 13712;
11518
+ static readonly EMISSARY_ASCENDED_13713 = 13713;
11519
+ static readonly FOREBEARER_JANUS = 13714;
11520
+ static readonly FOREBEARER_FIDES = 13715;
11521
+ static readonly FOREBEARER_FIDES_13716 = 13716;
11522
+ static readonly AUGUR_METZLI = 13717;
11523
+ static readonly FURIA_TULLUS_13718 = 13718;
11524
+ static readonly ENNIUS_TULLUS_13719 = 13719;
11525
+ static readonly EMISSARY_ASCENDED_13720 = 13720;
11526
+ static readonly EMISSARY_ASCENDED_13721 = 13721;
11527
+ static readonly EMISSARY_ACOLYTE = 13722;
11528
+ static readonly EMISSARY_ACOLYTE_13723 = 13723;
11529
+ static readonly EMISSARY_ACOLYTE_13724 = 13724;
11530
+ static readonly EMISSARY_ACOLYTE_13725 = 13725;
11531
+ static readonly FOREBEARER_VULCAN = 13726;
11532
+ static readonly FOREBEARER_VULCAN_13727 = 13727;
11533
+ static readonly FROST_NAGUA = 13728;
11534
+ static readonly EMISSARY_ASCENDED_13729 = 13729;
11535
+ static readonly EMISSARY_ASCENDED_13730 = 13730;
11536
+ static readonly FOREBEARER_HONOS = 13731;
11537
+ static readonly EMISSARY_ACOLYTE_13732 = 13732;
11538
+ static readonly EMISSARY_ACOLYTE_13733 = 13733;
11539
+ static readonly EMISSARY_ACOLYTE_13734 = 13734;
11540
+ static readonly EMISSARY_ACOLYTE_13735 = 13735;
11541
+ static readonly EMISSARY_ACOLYTE_13736 = 13736;
11542
+ static readonly EMISSARY_ACOLYTE_13737 = 13737;
11543
+ static readonly EMISSARY_CHOSEN = 13738;
11544
+ static readonly EMISSARY_CHOSEN_13739 = 13739;
11545
+ static readonly EMISSARY_CHOSEN_13740 = 13740;
11546
+ static readonly EMISSARY_CHOSEN_13741 = 13741;
11547
+ static readonly EMISSARY_CHOSEN_13742 = 13742;
11548
+ static readonly EMISSARY_CHOSEN_13743 = 13743;
11549
+ static readonly EMISSARY_ASCENDED_13744 = 13744;
11550
+ static readonly EMISSARY_ASCENDED_13745 = 13745;
11551
+ static readonly EMISSARY_ASCENDED_13746 = 13746;
11552
+ static readonly EMISSARY_ASCENDED_13747 = 13747;
11553
+ static readonly EMISSARY_ASCENDED_13748 = 13748;
11554
+ static readonly EMISSARY_ASCENDED_13749 = 13749;
11555
+ static readonly EMISSARY_ASCENDED_13750 = 13750;
11556
+ static readonly EMISSARY_ASCENDED_13751 = 13751;
11557
+ static readonly EMISSARY_FOREBEARER = 13752;
11558
+ static readonly EMISSARY_FOREBEARER_13753 = 13753;
11559
+ static readonly EMISSARY_FOREBEARER_13754 = 13754;
11560
+ static readonly EMISSARY_FOREBEARER_13755 = 13755;
11561
+ static readonly EMISSARY_FOREBEARER_13756 = 13756;
11562
+ static readonly EMISSARY_FOREBEARER_13757 = 13757;
11563
+ static readonly EMISSARY_CHEF = 13758;
11564
+ static readonly EMISSARY_FISHER = 13759;
11565
+ static readonly GOAT_13760 = 13760;
11566
+ static readonly GOAT_13761 = 13761;
11567
+ static readonly EMISSARY_HERDER = 13762;
11568
+ static readonly EMISSARY_ACOLYTE_13763 = 13763;
11569
+ static readonly EMISSARY_CHOSEN_13764 = 13764;
11570
+ static readonly EMISSARY_ACOLYTE_13765 = 13765;
11571
+ static readonly FOREBEARER_JANUS_13766 = 13766;
11572
+ static readonly EMISSARY_ASCENDED_13767 = 13767;
11573
+ static readonly EMISSARY_ASCENDED_13768 = 13768;
11574
+ static readonly EMISSARY_ASCENDED_13769 = 13769;
11575
+ static readonly PRINCE_ITZLA_ARKAN_13770 = 13770;
11576
+ static readonly PRINCE_ITZLA_ARKAN_13771 = 13771;
11577
+ static readonly PRINCE_ITZLA_ARKAN_13772 = 13772;
11578
+ static readonly EMISSARY_BRAWLER = 13773;
11579
+ static readonly EMISSARY_BRAWLER_13774 = 13774;
11580
+ static readonly EMISSARY_BRAWLER_13775 = 13775;
11581
+ static readonly EMISSARY_BRAWLER_13776 = 13776;
11582
+ static readonly EMISSARY_CONJURER = 13777;
11583
+ static readonly EMISSARY_CONJURER_13778 = 13778;
11584
+ static readonly EMISSARY = 13779;
11585
+ static readonly TENOCH = 13780;
11586
+ static readonly SILIA = 13781;
11587
+ static readonly ADRIUS = 13782;
11588
+ static readonly ELEUIA = 13783;
11589
+ static readonly PRINCE_ITZLA_ARKAN_13784 = 13784;
11590
+ static readonly PRINCE_ITZLA_ARKAN_13785 = 13785;
11591
+ static readonly PRINCE_ITZLA_ARKAN_13786 = 13786;
11592
+ static readonly FROST_NAGUA_13787 = 13787;
11593
+ static readonly FROST_NAGUA_13788 = 13788;
11594
+ static readonly FROST_CRAB = 13789;
11595
+ static readonly ICE_BLOCK_13790 = 13790;
11596
+ static readonly FROST_CRAB_13791 = 13791;
11597
+ static readonly ICE_BLOCK_13792 = 13792;
11598
+ static readonly BREWMA = 13793;
11599
+ static readonly MARIKA = 13794;
11600
+ static readonly BRUTAL_BLUE_DRAGON_13795 = 13795;
11601
+ static readonly ICE_GIANT_13796 = 13796;
11602
+ static readonly ICE_GIANT_13797 = 13797;
11603
+ static readonly ICE_SPIDER_13798 = 13798;
11604
+ static readonly CHILLED_JELLY = 13799;
11605
+ static readonly CAVE_CRAWLER_13800 = 13800;
11606
+ static readonly CAVE_CRAWLER_13801 = 13801;
11607
+ static readonly ICE_WARRIOR_13802 = 13802;
11608
+ static readonly HAZELMERE_13803 = 13803;
11609
+ static readonly EMELIO = 13804;
11610
+ static readonly EMELIO_13805 = 13805;
11611
+ static readonly LELIA = 13806;
11612
+ static readonly ALBA = 13807;
11613
+ static readonly LUCAS = 13808;
11614
+ static readonly RENATA = 13809;
11615
+ static readonly VINCENS = 13810;
11616
+ static readonly COLOSSEUM_ANNOUNCER = 13811;
11617
+ static readonly DIRE_WOLF_ALPHA = 13812;
11618
+ static readonly DIRE_WOLF_13813 = 13813;
11619
+ static readonly MINOTAUR_13814 = 13814;
11620
+ static readonly MINOTAUR_13815 = 13815;
11621
+ static readonly CURATOR_HAIG_HALEN_13816 = 13816;
11622
+ static readonly THIEF_13817 = 13817;
11623
+ static readonly PATZI = 13818;
11624
+ static readonly PATZI_13819 = 13819;
11625
+ static readonly ADALA = 13820;
11626
+ static readonly ADALA_13821 = 13821;
11627
+ static readonly ADALA_13822 = 13822;
11628
+ static readonly ADALA_13823 = 13823;
11629
+ static readonly ADALA_13824 = 13824;
11630
+ static readonly CONSTANTINIUS = 13825;
11631
+ static readonly CONSTANTINIUS_13826 = 13826;
11632
+ static readonly COZYAC = 13827;
11633
+ static readonly COZYAC_13828 = 13828;
11634
+ static readonly XOCOTLA = 13829;
11635
+ static readonly XOCOTLA_13830 = 13830;
11636
+ static readonly PAVO = 13831;
11637
+ static readonly PAVO_13832 = 13832;
11638
+ static readonly HEAD_BUTLER = 13833;
11639
+ static readonly STRADIUS = 13834;
11640
+ static readonly HUTZA = 13835;
11641
+ static readonly HUTZA_13836 = 13836;
11642
+ static readonly COSTUMER = 13837;
11643
+ static readonly NAIATLI = 13838;
11644
+ static readonly CLODIUS = 13839;
11645
+ static readonly WANDERING_GUARD = 13840;
11646
+ static readonly SMARTLOOKING_DOG = 13842;
11647
+ static readonly SMARTLOOKING_DOG_13843 = 13843;
11648
+ static readonly PATZI_13844 = 13844;
11649
+ static readonly CONSTANTINIUS_13845 = 13845;
11650
+ static readonly COZYAC_13846 = 13846;
11651
+ static readonly XOCOTLA_13847 = 13847;
11652
+ static readonly PAVO_13848 = 13848;
11653
+ static readonly STRADIUS_13849 = 13849;
11654
+ static readonly HUTZA_13850 = 13850;
11655
+ static readonly BUTLER_13852 = 13852;
11656
+ static readonly BUTLER_13854 = 13854;
11657
+ static readonly BUTLER_13856 = 13856;
11658
+ static readonly BUTLER_13858 = 13858;
11659
+ static readonly BUTLER_13860 = 13860;
11660
+ static readonly BUTLER_13862 = 13862;
11661
+ static readonly BUTLER_13864 = 13864;
11662
+ static readonly BUTLER_13866 = 13866;
11663
+ static readonly BUTLER_13868 = 13868;
11664
+ static readonly BUTLER_13870 = 13870;
11665
+ static readonly VILLA_GUARD = 13871;
11666
+ static readonly MAN_13872 = 13872;
11667
+ static readonly LIVIUS = 13873;
11668
+ static readonly CLEANER_13875 = 13875;
11669
+ static readonly SEER_13876 = 13876;
11670
+ static readonly CLEANER_13877 = 13877;
11671
+ static readonly CLEANER_13878 = 13878;
11672
+ static readonly CLEANER_13879 = 13879;
11673
+ static readonly CLEANER_13880 = 13880;
11674
+ static readonly CLEANER_13881 = 13881;
11675
+ static readonly CLEANER_13882 = 13882;
11676
+ static readonly CITIZEN_13883 = 13883;
11677
+ static readonly CITIZEN_13884 = 13884;
11678
+ static readonly CITIZEN_13885 = 13885;
11679
+ static readonly CITIZEN_13886 = 13886;
11680
+ static readonly CITIZEN_13887 = 13887;
11681
+ static readonly CITIZEN_13888 = 13888;
11682
+ static readonly CITIZEN_13889 = 13889;
11683
+ static readonly CITIZEN_13890 = 13890;
11684
+ static readonly CITIZEN_13891 = 13891;
11685
+ static readonly CITIZEN_13892 = 13892;
11686
+ static readonly CITIZEN_13893 = 13893;
11687
+ static readonly CITIZEN_13894 = 13894;
11688
+ static readonly CITIZEN_13895 = 13895;
11689
+ static readonly CITIZEN_13896 = 13896;
11690
+ static readonly CITIZEN_13897 = 13897;
11691
+ static readonly CITIZEN_13898 = 13898;
11692
+ static readonly CITIZEN_13899 = 13899;
11693
+ static readonly CITIZEN_13900 = 13900;
11694
+ static readonly CITIZEN_13901 = 13901;
11695
+ static readonly CHILD_13902 = 13902;
11696
+ static readonly CHILD_13903 = 13903;
11697
+ static readonly VINEYARD_WORKER = 13904;
11698
+ static readonly VINEYARD_WORKER_13905 = 13905;
11699
+ static readonly VINEYARD_WORKER_13906 = 13906;
11700
+ static readonly VINEYARD_WORKER_13907 = 13907;
11701
+ static readonly VINEYARD_FOREMAN = 13908;
11702
+ static readonly WELLDRESSED_MAN = 13909;
11703
+ static readonly CABBAGE_FARMER = 13910;
11704
+ static readonly NASTY_NICK = 13911;
11705
+ static readonly FISHING_SPOT_13912 = 13912;
11706
+ static readonly SHOPKEEPER_13913 = 13913;
11707
+ static readonly FAUSTUS = 13914;
11708
+ static readonly TOCI = 13915;
11709
+ static readonly ANTONIUS = 13916;
11710
+ static readonly BARTENDER_13917 = 13917;
11711
+ static readonly SUPERVISOR_LALO = 13920;
11712
+ static readonly SUPERVISOR_LALO_13921 = 13921;
11713
+ static readonly MEZTLAN = 13922;
11714
+ static readonly CLANILA = 13923;
11715
+ static readonly TZATELLI = 13924;
11716
+ static readonly JUATIL = 13925;
11717
+ static readonly ALAXXI = 13926;
11718
+ static readonly KALI = 13927;
11719
+ static readonly BARTENDER_13928 = 13928;
11720
+ static readonly ICHTA = 13929;
11721
+ static readonly NECTO = 13930;
11722
+ static readonly BANKER_13931 = 13931;
11723
+ static readonly BANKER_13932 = 13932;
11724
+ static readonly GUARD_13933 = 13933;
11725
+ static readonly GUARD_13934 = 13934;
11726
+ static readonly GUARD_13935 = 13935;
11727
+ static readonly CITIZEN_13936 = 13936;
11728
+ static readonly CITIZEN_13937 = 13937;
11729
+ static readonly CITIZEN_13938 = 13938;
11730
+ static readonly CITIZEN_13939 = 13939;
11731
+ static readonly CITIZEN_13940 = 13940;
11732
+ static readonly CITIZEN_13941 = 13941;
11733
+ static readonly CITIZEN_13942 = 13942;
11734
+ static readonly CITIZEN_13943 = 13943;
11735
+ static readonly CHILD_13944 = 13944;
11736
+ static readonly CHILD_13945 = 13945;
11737
+ static readonly CHILD_13946 = 13946;
11738
+ static readonly CHILD_13947 = 13947;
11739
+ static readonly WORKER_13948 = 13948;
11740
+ static readonly WORKER_13949 = 13949;
11741
+ static readonly WORKER_13950 = 13950;
11742
+ static readonly WORKER_13951 = 13951;
11743
+ static readonly WORKER_13952 = 13952;
11744
+ static readonly WORKER_13953 = 13953;
11745
+ static readonly WORKER_13954 = 13954;
11746
+ static readonly WORKER_13955 = 13955;
11747
+ static readonly OVERSEER_KHOUGO = 13956;
11748
+ static readonly CAPYBARA_13957 = 13957;
11749
+ static readonly TECHICHI = 13958;
11750
+ static readonly TECHICHI_13959 = 13959;
11751
+ static readonly TECHICHI_13960 = 13960;
11752
+ static readonly CHIRIBAYA = 13961;
11753
+ static readonly CHIRIBAYA_13962 = 13962;
11754
+ static readonly CHIRIBAYA_13963 = 13963;
11755
+ static readonly CHIRIBAYA_13964 = 13964;
11756
+ static readonly LOCKE_MCSCRUFF = 13965;
11757
+ static readonly WOOFSON = 13966;
11758
+ static readonly SCORPION_13967 = 13967;
11759
+ static readonly PORCUPINE = 13968;
11760
+ static readonly SHOPKEEPER_13969 = 13969;
11761
+ static readonly SALIUS = 13970;
11762
+ static readonly SALVAGER = 13971;
11763
+ static readonly SALVAGER_13972 = 13972;
11764
+ static readonly SALVAGER_13973 = 13973;
11765
+ static readonly SALVAGER_13974 = 13974;
11766
+ static readonly SALVAGER_13975 = 13975;
11767
+ static readonly SALVAGER_13976 = 13976;
11768
+ static readonly SALVAGER_13977 = 13977;
11769
+ static readonly CHOSEN_ALUINUS = 13978;
11770
+ static readonly HUGH = 13979;
11771
+ static readonly IZEL = 13980;
11772
+ static readonly WORM_TONGUE = 13981;
11773
+ static readonly WORM_TONGUE_13982 = 13982;
11774
+ static readonly CONSTRUCTION_WORKER = 13983;
11775
+ static readonly ANTONIA = 13984;
11776
+ static readonly ANTONIA_13985 = 13985;
11777
+ static readonly GUARD_13986 = 13986;
11778
+ static readonly GUARD_13987 = 13987;
11779
+ static readonly GUARD_13988 = 13988;
11780
+ static readonly GUARD_13989 = 13989;
11781
+ static readonly GUARD_13990 = 13990;
11782
+ static readonly GUARD_13991 = 13991;
11783
+ static readonly GUARD_13992 = 13992;
11784
+ static readonly GUARD_13993 = 13993;
11785
+ static readonly GUARD_13994 = 13994;
11786
+ static readonly GUARD_13995 = 13995;
11787
+ static readonly TAALA = 13996;
11788
+ static readonly SEER_13997 = 13997;
11789
+ static readonly CHEF = 13998;
11790
+ static readonly MARLA = 13999;
11791
+ static readonly GUARD_14000 = 14000;
11792
+ static readonly GUARD_14001 = 14001;
11793
+ static readonly VIERO = 14002;
11794
+ static readonly WORKER_14003 = 14003;
11795
+ static readonly WORKER_14004 = 14004;
11796
+ static readonly WORKER_14005 = 14005;
11797
+ static readonly WORKER_14006 = 14006;
11798
+ static readonly MANAUIA = 14007;
11799
+ static readonly SEER_14008 = 14008;
11800
+ static readonly THE_HUEYCOATL = 14009;
11801
+ static readonly THE_HUEYCOATL_14010 = 14010;
11802
+ static readonly THE_HUEYCOATL_14011 = 14011;
11803
+ static readonly THE_HUEYCOATL_14012 = 14012;
11804
+ static readonly THE_HUEYCOATL_14013 = 14013;
11805
+ static readonly HUEYCOATL_TAIL = 14014;
11806
+ static readonly HUEYCOATL_TAIL_BROKEN = 14015;
11807
+ static readonly HUEYCOATL_BODY = 14017;
11808
+ static readonly RUBBLE_14018 = 14018;
11809
+ static readonly BARTENDER_14020 = 14020;
11810
+ static readonly SHOPKEEPER_14021 = 14021;
11811
+ static readonly PILGRIM = 14022;
11812
+ static readonly EZCO_TEOKI_OF_RANUL = 14023;
11813
+ static readonly YOLOTLI_TEOKI_OF_RALOS = 14024;
11814
+ static readonly WORKER_14025 = 14025;
11815
+ static readonly LUCREZIA = 14029;
11816
+ static readonly ERCOS = 14030;
11817
+ static readonly CHASM_CRAWLER_14031 = 14031;
11818
+ static readonly BONE_SQUIRREL = 14032;
11819
+ static readonly HUBERTE = 14033;
11820
+ static readonly MOXI = 14034;
11821
+ static readonly ROD_FISHING_SPOT_14036 = 14036;
11822
+ static readonly FISHING_SPOT_14037 = 14037;
11823
+ static readonly FISHING_SPOT_14038 = 14038;
11824
+ static readonly FISHING_SPOT_14039 = 14039;
11825
+ static readonly FISHING_SPOT_14040 = 14040;
11826
+ static readonly FISHING_SPOT_14041 = 14041;
11827
+ static readonly BAT_14042 = 14042;
11828
+ static readonly UNICORN_14043 = 14043;
11829
+ static readonly BONE_SQUIRREL_14044 = 14044;
11830
+ static readonly HUBERTE_14045 = 14045;
11831
+ static readonly MOXI_14046 = 14046;
11832
+ static readonly GULL_14047 = 14047;
11833
+ static readonly BLUE_DRAGON_14103 = 14103;
11834
+ static readonly BLUE_DRAGON_14104 = 14104;
11835
+ static readonly BABY_BLUE_DRAGON_14105 = 14105;
11836
+ static readonly BABY_BLUE_DRAGON_14106 = 14106;
11837
+ static readonly MARIKA_14107 = 14107;
11838
+ static readonly POSTIE_PETE_14108 = 14108;
11839
+ static readonly GHOST_CAT = 14109;
11840
+ static readonly CROW_14110 = 14110;
11841
+ static readonly STRAY_DOG_14112 = 14112;
11842
+ static readonly ARMOURED_ZOMBIE_14113 = 14113;
11843
+ static readonly ARMOURED_ZOMBIE_14114 = 14114;
11844
+ static readonly ARMOURED_ZOMBIE_14115 = 14115;
11845
+ static readonly ARMOURED_ZOMBIE_14116 = 14116;
11846
+ static readonly ARMOURED_ZOMBIE_14117 = 14117;
11847
+ static readonly ARMOURED_ZOMBIE_14118 = 14118;
11848
+ static readonly ARMOURED_ZOMBIE_14119 = 14119;
11849
+ static readonly ARMOURED_ZOMBIE_14120 = 14120;
11850
+ static readonly ARMOURED_ZOMBIE_14121 = 14121;
11851
+ static readonly ARMOURED_ZOMBIE_14122 = 14122;
11852
+ static readonly GOLEM_GUARD = 14125;
11853
+ static readonly SMALL_SCARAB = 14126;
11854
+ static readonly ZEMOUREGAL_14127 = 14127;
11855
+ static readonly SHARATHTEERK_14128 = 14128;
11856
+ static readonly ARRAV_14129 = 14129;
11857
+ static readonly ARRAV_14130 = 14130;
11858
+ static readonly ARRAV_14131 = 14131;
11859
+ static readonly ARRAV_14132 = 14132;
11860
+ static readonly ARRAV_14133 = 14133;
11861
+ static readonly ARMOURED_ZOMBIE_14135 = 14135;
11862
+ static readonly ARMOURED_ZOMBIE_14136 = 14136;
11863
+ static readonly WEAPONSMASTER = 14137;
11864
+ static readonly JONNY_THE_BEARD = 14138;
11865
+ static readonly JONNY_THE_BEARD_14139 = 14139;
11866
+ static readonly SPINOLYP_14140 = 14140;
11867
+ static readonly SUSPICIOUS_WATER_14141 = 14141;
11868
+ static readonly THE_SAGE_14144 = 14144;
11869
+ static readonly LEAGUE_NAVIGATOR = 14145;
11870
+ static readonly BLACK_DRAGON_14146 = 14146;
11871
+ static readonly ELDRIC_THE_ICE_KING = 14147;
11872
+ static readonly BRANDA_THE_FIRE_QUEEN_14148 = 14148;
11873
+ static readonly ELDRIC_THE_ICE_KING_14149 = 14149;
11874
+ static readonly FIRE_ELEMENTAL_14150 = 14150;
11875
+ static readonly ICE_ELEMENTAL = 14151;
11876
+ static readonly FIRE_14152 = 14152;
11877
+ static readonly ICICLES = 14153;
11878
+ static readonly PIRATE_14155 = 14155;
11879
+ static readonly PIRATE_14156 = 14156;
11880
+ static readonly CRAWLING_HAND_14158 = 14158;
11881
+ static readonly CRAWLING_HAND_14159 = 14159;
11882
+ static readonly CRAWLING_HAND_14160 = 14160;
11883
+ static readonly COCKATRICE_14161 = 14161;
11884
+ static readonly COCKATRICE_14162 = 14162;
11885
+ static readonly SADIE = 14163;
11886
+ static readonly COCKATRICE_14164 = 14164;
11887
+ static readonly SIR_BURRUS = 14165;
11888
+ static readonly BASILISK_14166 = 14166;
11889
+ static readonly ARCHIBALD = 14167;
11890
+ static readonly BASILISK_14168 = 14168;
11891
+ static readonly DUKE_14169 = 14169;
11892
+ static readonly BASILISK_14170 = 14170;
11893
+ static readonly KIMBA = 14171;
11894
+ static readonly KURASK_14172 = 14172;
11895
+ static readonly KURASK_14173 = 14173;
11896
+ static readonly ABYSSAL_DEMON_14174 = 14174;
11897
+ static readonly ABYSSAL_DEMON_14175 = 14175;
11898
+ /* This file is automatically generated. Do not edit. */
10722
11899
  }
10723
11900
  }