@deafwave/osrs-botmaker-types 0.3.1 → 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
@@ -874,6 +874,8 @@ declare namespace net.runelite.api {
874
874
  static readonly COSMIC_TALISMAN = 1454;
875
875
  static readonly DEATH_TALISMAN = 1456;
876
876
  static readonly LAW_TALISMAN = 1458;
877
+ static readonly AUTOWEED = 1459;
878
+ static readonly SOUL_TALISMAN = 1460;
877
879
  static readonly NATURE_TALISMAN = 1462;
878
880
  static readonly ARCHERY_TICKET = 1464;
879
881
  static readonly WEAPON_POISON_1465 = 1465;
@@ -2002,10 +2004,10 @@ declare namespace net.runelite.api {
2002
2004
  static readonly OCHRE_SNELM = 3331;
2003
2005
  static readonly BRUISE_BLUE_SNELM = 3333;
2004
2006
  static readonly BROKEN_BARK_SNELM = 3335;
2005
- static readonly MYRE_SNELM_3337 = 3337;
2006
- static readonly BLOODNTAR_SNELM_3339 = 3339;
2007
- static readonly OCHRE_SNELM_3341 = 3341;
2008
- static readonly BRUISE_BLUE_SNELM_3343 = 3343;
2007
+ static readonly POINTED_MYRE_SNELM = 3337;
2008
+ static readonly POINTED_BLOODNTAR_SNELM = 3339;
2009
+ static readonly POINTED_OCHRE_SNELM = 3341;
2010
+ static readonly POINTED_BRUISE_BLUE_SNELM = 3343;
2009
2011
  static readonly BLAMISH_MYRE_SHELL = 3345;
2010
2012
  static readonly BLAMISH_RED_SHELL = 3347;
2011
2013
  static readonly BLAMISH_OCHRE_SHELL = 3349;
@@ -2418,8 +2420,8 @@ declare namespace net.runelite.api {
2418
2420
  static readonly _10TH_SQUAD_SIGIL = 4035;
2419
2421
  static readonly SARADOMIN_BANNER = 4037;
2420
2422
  static readonly ZAMORAK_BANNER = 4039;
2421
- static readonly HOODED_CLOAK = 4041;
2422
- static readonly HOODED_CLOAK_4042 = 4042;
2423
+ static readonly SARADOMIN_CLOAK = 4041;
2424
+ static readonly ZAMORAK_CLOAK = 4042;
2423
2425
  static readonly ROCK_4043 = 4043;
2424
2426
  static readonly EXPLOSIVE_POTION = 4045;
2425
2427
  static readonly CLIMBING_ROPE = 4047;
@@ -3311,8 +3313,11 @@ declare namespace net.runelite.api {
3311
3313
  static readonly NATURE_TIARA = 5541;
3312
3314
  static readonly CHAOS_TIARA = 5543;
3313
3315
  static readonly LAW_TIARA = 5545;
3316
+ static readonly AUTOWEED_DEACTIVATED = 5546;
3314
3317
  static readonly DEATH_TIARA = 5547;
3315
3318
  static readonly BLOOD_TIARA = 5549;
3319
+ static readonly GRICOLLERS_CAN_REFILL = 5551;
3320
+ static readonly AUTOWEED_ACTIVATED = 5552;
3316
3321
  static readonly ROGUE_TOP = 5553;
3317
3322
  static readonly ROGUE_MASK = 5554;
3318
3323
  static readonly ROGUE_TROUSERS = 5555;
@@ -3714,10 +3719,10 @@ declare namespace net.runelite.api {
3714
3719
  static readonly LEDERHOSEN_SHORTS = 6181;
3715
3720
  static readonly LEDERHOSEN_HAT = 6182;
3716
3721
  static readonly FROG_TOKEN = 6183;
3717
- static readonly PRINCE_TUNIC = 6184;
3718
- static readonly PRINCE_LEGGINGS = 6185;
3719
- static readonly PRINCESS_BLOUSE = 6186;
3720
- static readonly PRINCESS_SKIRT = 6187;
3722
+ static readonly ROYAL_FROG_TUNIC = 6184;
3723
+ static readonly ROYAL_FROG_LEGGINGS = 6185;
3724
+ static readonly ROYAL_FROG_BLOUSE = 6186;
3725
+ static readonly ROYAL_FROG_SKIRT = 6187;
3721
3726
  static readonly FROG_MASK = 6188;
3722
3727
  static readonly MYSTERY_BOX = 6199;
3723
3728
  static readonly RAW_FISHLIKE_THING = 6200;
@@ -4191,7 +4196,7 @@ declare namespace net.runelite.api {
4191
4196
  static readonly BOTTLED_WATER = 6953;
4192
4197
  static readonly REDBERRY_JUICE = 6954;
4193
4198
  static readonly PINK_DYE = 6955;
4194
- static readonly ROSE_TINTED_LENS = 6956;
4199
+ static readonly ROSETINTED_LENS = 6956;
4195
4200
  static readonly WIZARDS_HEAD = 6957;
4196
4201
  static readonly SAND = 6958;
4197
4202
  static readonly PINK_CAPE = 6959;
@@ -5034,9 +5039,9 @@ declare namespace net.runelite.api {
5034
5039
  static readonly LARGE_STATUES = 8084;
5035
5040
  static readonly SUIT_OF_ARMOUR = 8085;
5036
5041
  static readonly SMALL_PORTRAIT = 8086;
5037
- static readonly MINOR_HEAD = 8087;
5038
- static readonly MEDIUM_HEAD = 8088;
5039
- static readonly MAJOR_HEAD = 8089;
5042
+ static readonly TEAK_MOUNTED_HEAD_DISPLAY = 8087;
5043
+ static readonly MAHOGANY_MOUNTED_HEAD_DISPLAY = 8088;
5044
+ static readonly GILDED_MOUNTED_HEAD_DISPLAY = 8089;
5040
5045
  static readonly MOUNTED_SWORD = 8090;
5041
5046
  static readonly SMALL_LANDSCAPE = 8091;
5042
5047
  static readonly LARGE_PORTRAIT = 8093;
@@ -6521,9 +6526,9 @@ declare namespace net.runelite.api {
6521
6526
  static readonly SARADOMIN_CROZIER = 10440;
6522
6527
  static readonly GUTHIX_CROZIER = 10442;
6523
6528
  static readonly ZAMORAK_CROZIER = 10444;
6524
- static readonly SARADOMIN_CLOAK = 10446;
6529
+ static readonly SARADOMIN_CLOAK_10446 = 10446;
6525
6530
  static readonly GUTHIX_CLOAK = 10448;
6526
- static readonly ZAMORAK_CLOAK = 10450;
6531
+ static readonly ZAMORAK_CLOAK_10450 = 10450;
6527
6532
  static readonly SARADOMIN_MITRE = 10452;
6528
6533
  static readonly GUTHIX_MITRE = 10454;
6529
6534
  static readonly ZAMORAK_MITRE = 10456;
@@ -7081,6 +7086,10 @@ declare namespace net.runelite.api {
7081
7086
  static readonly ZAMORAK_MIX2 = 11521;
7082
7087
  static readonly ZAMORAK_MIX1 = 11523;
7083
7088
  static readonly FEATHER_11525 = 11525;
7089
+ static readonly MOUNTED_HARPOONFISH = 11578;
7090
+ static readonly OAK_MOUNTED_FISH_DISPLAY = 11599;
7091
+ static readonly MAHOGANY_MOUNTED_FISH_DISPLAY = 11601;
7092
+ static readonly TEAK_MOUNTED_FISH_DISPLAY = 11603;
7084
7093
  static readonly AVAS_DEVICE = 11628;
7085
7094
  static readonly BOOK_OF_KNOWLEDGE = 11640;
7086
7095
  static readonly GLASSBLOWING_BOOK = 11656;
@@ -11569,12 +11578,12 @@ declare namespace net.runelite.api {
11569
11578
  static readonly TRAILBLAZER_RUG = 25096;
11570
11579
  static readonly TRAILBLAZER_GRACEFUL_ORNAMENT_KIT = 25099;
11571
11580
  static readonly FAIRY_MUSHROOM = 25102;
11572
- static readonly CRYSTAL_OF_MEMORIES = 25104;
11581
+ static readonly CRYSTAL_OF_ECHOES = 25104;
11573
11582
  static readonly EXTRADIMENSIONAL_BAG = 25106;
11574
11583
  static readonly EXTRADIMENSIONAL_BAG_25108 = 25108;
11575
- static readonly TRAILBLAZER_AXE = 25110;
11576
- static readonly TRAILBLAZER_PICKAXE = 25112;
11577
- static readonly TRAILBLAZER_HARPOON = 25114;
11584
+ static readonly ECHO_AXE = 25110;
11585
+ static readonly ECHO_PICKAXE = 25112;
11586
+ static readonly ECHO_HARPOON = 25114;
11578
11587
  static readonly LEAGUE_TOMATO = 25117;
11579
11588
  static readonly BEEKEEPERS_HAT = 25129;
11580
11589
  static readonly BEEKEEPERS_TOP = 25131;
@@ -11815,7 +11824,7 @@ declare namespace net.runelite.api {
11815
11824
  static readonly DARK_FLIPPERS = 25557;
11816
11825
  static readonly BIG_HARPOONFISH = 25559;
11817
11826
  static readonly STUFFED_BIG_HARPOONFISH = 25561;
11818
- static readonly MOUNTED_HARPOONFISH = 25563;
11827
+ static readonly MOUNTED_HARPOONFISH_25563 = 25563;
11819
11828
  static readonly RAW_HARPOONFISH = 25564;
11820
11829
  static readonly HARPOONFISH = 25565;
11821
11830
  static readonly CRYSTALLISED_HARPOONFISH = 25566;
@@ -13963,7 +13972,7 @@ declare namespace net.runelite.api {
13963
13972
  static readonly A_NICE_KEY = 29408;
13964
13973
  static readonly SUNBEAM_ALE = 29409;
13965
13974
  static readonly STEAMFORGE_BREW = 29412;
13966
- static readonly ECLIPSE_WINE = 29415;
13975
+ static readonly ECLIPSE_RED = 29415;
13967
13976
  static readonly MOONLITE = 29418;
13968
13977
  static readonly SUNSHINE = 29421;
13969
13978
  static readonly SUNFIRE_FANATIC_ARMOUR_SET = 29424;
@@ -14012,5 +14021,704 @@ declare namespace net.runelite.api {
14012
14021
  static readonly COLOURFUL_CROWN_SHIRT_29514 = 29514;
14013
14022
  static readonly COLOURFUL_CROWN_SHIRT_29515 = 29515;
14014
14023
  static readonly COLOURFUL_CROWN_SHIRT_29516 = 29516;
14024
+ static readonly ARMADYL_COMMUNIQU = 29517;
14025
+ static readonly UNCONSCIOUS_BROAV = 29518;
14026
+ static readonly BROAV = 29519;
14027
+ static readonly DIRTY_SHIRT = 29521;
14028
+ static readonly WASTEPAPER_BASKET = 29522;
14029
+ static readonly RUBY_KEY_29523 = 29523;
14030
+ static readonly NOTES_ON_PRESSURE = 29524;
14031
+ static readonly MOVARIOS_NOTES_VOLUME_1 = 29525;
14032
+ static readonly MOVARIOS_NOTES_VOLUME_2 = 29526;
14033
+ static readonly WEIGHT_1KG = 29527;
14034
+ static readonly WEIGHT_2KG = 29528;
14035
+ static readonly WEIGHT_5KG = 29529;
14036
+ static readonly ENRICHED_SNAPDRAGON = 29530;
14037
+ static readonly SUPER_TRUTH_SERUM = 29531;
14038
+ static readonly TRUTH_SERUM_29532 = 29532;
14039
+ static readonly SUSPECT_SKETCH = 29533;
14040
+ static readonly CELL_KEY = 29534;
14041
+ static readonly STRANGE_TELEORB = 29535;
14042
+ static readonly TELEORB = 29536;
14043
+ static readonly TELEORB_29537 = 29537;
14044
+ static readonly ENRICHED_SNAPDRAGON_SEED = 29538;
14045
+ static readonly AGILITY_DOLMEN = 29539;
14046
+ static readonly ENERGY_DOLMEN = 29540;
14047
+ static readonly RESTORATION_DOLMEN = 29541;
14048
+ static readonly ATTACK_DOLMEN = 29542;
14049
+ static readonly STRENGTH_DOLMEN = 29543;
14050
+ static readonly DEFENCE_DOLMEN = 29544;
14051
+ static readonly COMBAT_DOLMEN = 29545;
14052
+ static readonly RANGED_DOLMEN = 29546;
14053
+ static readonly PRAYER_DOLMEN = 29547;
14054
+ static readonly HUNTER_DOLMEN = 29548;
14055
+ static readonly FISHING_DOLMEN = 29549;
14056
+ static readonly MAGIC_DOLMEN = 29550;
14057
+ static readonly BALANCE_DOLMEN = 29551;
14058
+ static readonly AIR_BLOCK = 29552;
14059
+ static readonly EARTH_BLOCK = 29553;
14060
+ static readonly FIRE_BLOCK = 29554;
14061
+ static readonly WATER_BLOCK = 29555;
14062
+ static readonly VINE_FLOWER = 29556;
14063
+ static readonly GRIMY_NOTE = 29558;
14064
+ static readonly ELITE_BLACK_FULL_HELM = 29560;
14065
+ static readonly ELITE_BLACK_PLATEBODY = 29562;
14066
+ static readonly ELITE_BLACK_PLATELEGS = 29564;
14067
+ static readonly DARK_SQUALL_HOOD = 29566;
14068
+ static readonly DARK_SQUALL_ROBE_TOP = 29568;
14069
+ static readonly DARK_SQUALL_ROBE_BOTTOM = 29570;
14070
+ static readonly SILIF = 29572;
14071
+ static readonly LIT_EXPLOSIVE = 29573;
14072
+ static readonly BURNING_CLAW = 29574;
14073
+ static readonly BURNING_CLAWS = 29577;
14074
+ static readonly TORMENTED_SYNAPSE = 29580;
14075
+ static readonly SMOULDERING_HEART = 29583;
14076
+ static readonly SMOULDERING_PILE_OF_FLESH = 29585;
14077
+ static readonly SMOULDERING_GLAND = 29587;
14078
+ static readonly EMBERLIGHT = 29589;
14079
+ static readonly SCORCHING_BOW = 29591;
14080
+ static readonly PURGING_STAFF = 29594;
14081
+ static readonly DURADELS_NOTES = 29596;
14082
+ static readonly DEADMAN_RUG = 29598;
14083
+ static readonly CORRUPTED_DARK_BOW = 29599;
14084
+ static readonly CORRUPTED_VOLATILE_NIGHTMARE_STAFF = 29602;
14085
+ static readonly ARMADYL_GODSWORD_DEADMAN = 29605;
14086
+ static readonly VOIDWAKER_DEADMAN = 29607;
14087
+ static readonly VOLATILE_NIGHTMARE_STAFF_DEADMAN = 29609;
14088
+ static readonly DARK_BOW_DEADMAN = 29611;
14089
+ static readonly IMBUED_ZAMORAK_CAPE_DEADMAN = 29613;
14090
+ static readonly IMBUED_GUTHIX_CAPE_DEADMAN = 29615;
14091
+ static readonly IMBUED_SARADOMIN_CAPE_DEADMAN = 29617;
14092
+ static readonly ARMAGEDDON_RUG = 29619;
14093
+ static readonly ARMAGEDDON_TELEPORT_SCROLL = 29622;
14094
+ static readonly ARMAGEDDON_WEAPON_SCROLL = 29625;
14095
+ static readonly ARMAGEDDON_CAPE_FABRIC = 29628;
14096
+ static readonly BLIGHTED_OVERLOAD_4 = 29631;
14097
+ static readonly BLIGHTED_OVERLOAD_3 = 29634;
14098
+ static readonly BLIGHTED_OVERLOAD_2 = 29637;
14099
+ static readonly BLIGHTED_OVERLOAD_1 = 29640;
14100
+ static readonly CHITIN = 29643;
14101
+ static readonly CABBAGE_29646 = 29646;
14102
+ static readonly SIGIL_OF_METICULOUSNESS = 29648;
14103
+ static readonly SIGIL_OF_METICULOUSNESS_29649 = 29649;
14104
+ static readonly SIGIL_OF_REVOKED_LIMITATION = 29651;
14105
+ static readonly SIGIL_OF_REVOKED_LIMITATION_29652 = 29652;
14106
+ static readonly SIGIL_OF_RAMPART = 29654;
14107
+ static readonly SIGIL_OF_RAMPART_29655 = 29655;
14108
+ static readonly SIGIL_OF_DECEPTION = 29657;
14109
+ static readonly SIGIL_OF_DECEPTION_29658 = 29658;
14110
+ static readonly SIGIL_OF_LITHE = 29660;
14111
+ static readonly SIGIL_OF_LITHE_29661 = 29661;
14112
+ static readonly SIGIL_OF_ADROIT = 29663;
14113
+ static readonly SIGIL_OF_ADROIT_29664 = 29664;
14114
+ static readonly SIGIL_OF_ONSLAUGHT = 29666;
14115
+ static readonly SIGIL_OF_ONSLAUGHT_29667 = 29667;
14116
+ static readonly SIGIL_OF_RESTORATION = 29669;
14117
+ static readonly SIGIL_OF_RESTORATION_29670 = 29670;
14118
+ static readonly SIGIL_OF_SWASHBUCKLER = 29672;
14119
+ static readonly SIGIL_OF_SWASHBUCKLER_29673 = 29673;
14120
+ static readonly SIGIL_OF_GUNSLINGER = 29675;
14121
+ static readonly SIGIL_OF_GUNSLINGER_29676 = 29676;
14122
+ static readonly SIGIL_OF_ARCANE_SWIFTNESS = 29678;
14123
+ static readonly SIGIL_OF_ARCANE_SWIFTNESS_29679 = 29679;
14124
+ static readonly GUTHIXIAN_TEMPLE_TELEPORT = 29684;
14125
+ static readonly DNI23_TORSO_LIGHTBUTTONS = 29686;
14126
+ static readonly DNI23_TORSO_DARKBUTTONS = 29688;
14127
+ static readonly DNI23_TORSO_DARKBUTTONS_29690 = 29690;
14128
+ static readonly DNI23_TORSO_SHIRT = 29692;
14129
+ static readonly DNI23_TORSO_STITCHING = 29694;
14130
+ static readonly DNI23_TORSO_TWOTONED = 29696;
14131
+ static readonly DNI23_TORSO_PRINCELY = 29698;
14132
+ static readonly DNI23_TORSO_RIPPEDWESKIT = 29700;
14133
+ static readonly DNI23_TORSO_RIPPEDWESKIT_29702 = 29702;
14134
+ static readonly DNI23_TORSO_CROPTOPS = 29704;
14135
+ static readonly DNI23_TORSO_POLONECK = 29706;
14136
+ static readonly DNI23_TORSO_SIMPLE = 29708;
14137
+ static readonly DNI23_TORSO_FRILLY = 29710;
14138
+ static readonly DNI23_TORSO_CORSETRY = 29712;
14139
+ static readonly DNI23_TORSO_BODICE = 29714;
14140
+ static readonly DNI23_ARMS_THIN = 29716;
14141
+ static readonly DNI23_ARMS_SHOULDERPADS = 29718;
14142
+ static readonly DNI23_ARMS_THICKSTRIPE = 29720;
14143
+ static readonly DNI23_ARMS_LOOSESLEEVES = 29722;
14144
+ static readonly DNI23_ARMS_PRINCELY = 29724;
14145
+ static readonly DNI23_ARMS_TATTYLONG = 29726;
14146
+ static readonly DNI23_ARMS_RIPPED = 29728;
14147
+ static readonly DNI23_ARMS_BARE = 29730;
14148
+ static readonly DNI23_ARMS_FRILLY = 29732;
14149
+ static readonly DNI23_ARMS_TATTYSHORT = 29734;
14150
+ static readonly DNI23_ARMS_BARESHOULDERS = 29736;
14151
+ static readonly DNI23_LEGS_SHORTS = 29738;
14152
+ static readonly DNI23_LEGS_BEACH = 29740;
14153
+ static readonly DNI23_LEGS_PRINCELY = 29742;
14154
+ static readonly DNI23_LEGS_LEGGINGS = 29744;
14155
+ static readonly DNI23_LEGS_SIDESTRIPES = 29746;
14156
+ static readonly DNI23_LEGS_RIPPED = 29748;
14157
+ static readonly DNI23_LEGS_PATCHED = 29750;
14158
+ static readonly DNI23_LEGS_SKIRT = 29752;
14159
+ static readonly DNI23_LEGS_LONGSKIRT = 29754;
14160
+ static readonly DNI23_LEGS_LONGNARROWSKIRT = 29756;
14161
+ static readonly DNI23_LEGS_SHORTSKIRT = 29758;
14162
+ static readonly DNI23_LEGS_LAYERED = 29760;
14163
+ static readonly DNI23_LEGS_SASHDOTS = 29762;
14164
+ static readonly DNI23_LEGS_BIGHEM = 29764;
14165
+ static readonly DNI23_LEGS_SASHTROUSERS = 29766;
14166
+ static readonly DNI23_LEGS_PATTERNED = 29768;
14167
+ static readonly DNI23_LEGS_TORNSKIRT = 29770;
14168
+ static readonly DNI23_LEGS_PATCHEDSKIRT = 29772;
14169
+ static readonly AMYS_SAW_OFFHAND = 29774;
14170
+ static readonly IMCANDO_HAMMER_OFFHAND = 29775;
14171
+ static readonly BRUMA_TORCH_OFFHAND = 29777;
14172
+ static readonly COAGULATED_VENOM = 29781;
14173
+ static readonly SPIDER_CAVE_TELEPORT = 29782;
14174
+ static readonly ARAXYTE_VENOM_SACK = 29784;
14175
+ static readonly JAR_OF_VENOM = 29786;
14176
+ static readonly ARAXYTE_HEAD = 29788;
14177
+ static readonly NOXIOUS_POINT = 29790;
14178
+ static readonly NOXIOUS_BLADE = 29792;
14179
+ static readonly NOXIOUS_POMMEL = 29794;
14180
+ static readonly NOXIOUS_HALBERD = 29796;
14181
+ static readonly ARAXYTE_FANG = 29799;
14182
+ static readonly AMULET_OF_RANCOUR = 29801;
14183
+ static readonly AMULET_OF_RANCOUR_S = 29804;
14184
+ static readonly ARANEA_BOOTS = 29806;
14185
+ static readonly VENOMRIDDLED_NOTE = 29809;
14186
+ static readonly ARAXYTE_SLAYER_HELMET = 29816;
14187
+ static readonly ARAXYTE_SLAYER_HELMET_I = 29818;
14188
+ static readonly ARAXYTE_SLAYER_HELMET_I_29820 = 29820;
14189
+ static readonly ARAXYTE_SLAYER_HELMET_I_29822 = 29822;
14190
+ static readonly EXTENDED_ANTIVENOM4 = 29824;
14191
+ static readonly EXTENDED_ANTIVENOM3 = 29827;
14192
+ static readonly EXTENDED_ANTIVENOM2 = 29830;
14193
+ static readonly EXTENDED_ANTIVENOM1 = 29833;
14194
+ static readonly NID = 29836;
14195
+ static readonly RAX = 29838;
14196
+ static readonly ECLIPSE_MOON_CHESTPLATE_29840 = 29840;
14197
+ static readonly ECLIPSE_MOON_TASSETS_29841 = 29841;
14198
+ static readonly ECLIPSE_MOON_HELM_29842 = 29842;
14199
+ static readonly BLUE_MOON_CHESTPLATE_29843 = 29843;
14200
+ static readonly BLUE_MOON_TASSETS_29844 = 29844;
14201
+ static readonly BLUE_MOON_HELM_29845 = 29845;
14202
+ static readonly BLOOD_MOON_CHESTPLATE_29846 = 29846;
14203
+ static readonly BLOOD_MOON_TASSETS_29847 = 29847;
14204
+ static readonly BLOOD_MOON_HELM_29848 = 29848;
14205
+ static readonly BLUE_MOON_SPEAR_29849 = 29849;
14206
+ static readonly DUAL_MACUAHUITL_29850 = 29850;
14207
+ static readonly ECLIPSE_ATLATL_29851 = 29851;
14208
+ static readonly ATLATL_DART_29852 = 29852;
14209
+ static readonly CLUE_SCROLL_EASY_29853 = 29853;
14210
+ static readonly CLUE_SCROLL_EASY_29854 = 29854;
14211
+ static readonly CLUE_SCROLL_ELITE_29855 = 29855;
14212
+ static readonly CLUE_SCROLL_ELITE_29856 = 29856;
14213
+ static readonly CLUE_SCROLL_MEDIUM_29857 = 29857;
14214
+ static readonly CLUE_SCROLL_MEDIUM_29858 = 29858;
14215
+ static readonly CLUE_SCROLL_HARD_29859 = 29859;
14216
+ static readonly CASKET_EASY_29860 = 29860;
14217
+ static readonly CASKET_MEDIUM_29861 = 29861;
14218
+ static readonly CASKET_MEDIUM_29862 = 29862;
14219
+ static readonly CASKET_MEDIUM_29863 = 29863;
14220
+ static readonly CASKET_HARD_29864 = 29864;
14221
+ static readonly PRINCE_ITZLA_ARKAN = 29867;
14222
+ static readonly EMISSARY_HOOD = 29868;
14223
+ static readonly EMISSARY_ROBE_TOP = 29870;
14224
+ static readonly EMISSARY_ROBE_BOTTOM = 29872;
14225
+ static readonly EMISSARY_SANDALS = 29874;
14226
+ static readonly STONE_TABLET_29876 = 29876;
14227
+ static readonly TOWER_KEY_29877 = 29877;
14228
+ static readonly BOOK_29878 = 29878;
14229
+ static readonly POEM = 29879;
14230
+ static readonly SCRAP_OF_PAPER = 29880;
14231
+ static readonly SCRAP_OF_PAPER_29881 = 29881;
14232
+ static readonly SCRAP_OF_PAPER_29882 = 29882;
14233
+ static readonly COMPLETED_NOTE = 29883;
14234
+ static readonly BANDAGES_29884 = 29884;
14235
+ static readonly ICON = 29885;
14236
+ static readonly ICON_29886 = 29886;
14237
+ static readonly ICON_29887 = 29887;
14238
+ static readonly ICON_29888 = 29888;
14239
+ static readonly GLACIAL_TEMOTLI = 29889;
14240
+ static readonly PENDANT_OF_ATES_INERT = 29892;
14241
+ static readonly PENDANT_OF_ATES = 29893;
14242
+ static readonly FROZEN_TEAR = 29895;
14243
+ static readonly ICON_29897 = 29897;
14244
+ static readonly TEST_KEBAB = 29898;
14245
+ static readonly TEST_KEBAB_29899 = 29899;
14246
+ static readonly VARLAMORIAN_KEBAB = 29900;
14247
+ static readonly TATTERED_SAILS = 29903;
14248
+ static readonly SAILS = 29904;
14249
+ static readonly BETTYS_NOTES = 29905;
14250
+ static readonly STOREROOM_KEY_29906 = 29906;
14251
+ static readonly PROP_SWORD_29911 = 29911;
14252
+ static readonly BUTLERS_TRAY = 29912;
14253
+ static readonly BUTLERS_TRAY_29913 = 29913;
14254
+ static readonly BUTLERS_UNIFORM = 29914;
14255
+ static readonly BUTLERS_UNIFORM_29915 = 29915;
14256
+ static readonly BUTLERS_UNIFORM_29916 = 29916;
14257
+ static readonly BUTLERS_UNIFORM_29918 = 29918;
14258
+ static readonly COSTUME_NEEDLE = 29920;
14259
+ static readonly CASE_FILE = 29922;
14260
+ static readonly CHEST_KEY_29923 = 29923;
14261
+ static readonly DRINKING_FLASK = 29925;
14262
+ static readonly THREATENING_NOTE = 29926;
14263
+ static readonly SHIPPING_CONTRACT = 29927;
14264
+ static readonly WINE_LABELS = 29928;
14265
+ static readonly RAM_MASK = 29929;
14266
+ static readonly WOLF_MASK_29930 = 29930;
14267
+ static readonly BIRD_MASK = 29931;
14268
+ static readonly JAGUAR_MASK = 29932;
14269
+ static readonly SNAKE_MASK = 29933;
14270
+ static readonly RAM_MASK_29934 = 29934;
14271
+ static readonly WOLF_MASK_29936 = 29936;
14272
+ static readonly BIRD_MASK_29938 = 29938;
14273
+ static readonly JAGUAR_MASK_29940 = 29940;
14274
+ static readonly SNAKE_MASK_29942 = 29942;
14275
+ static readonly BLACKBIRD_RED = 29944;
14276
+ static readonly CHILHUAC_RED = 29947;
14277
+ static readonly PRINCIPUM_RED = 29950;
14278
+ static readonly IXCOZTIC_WHITE = 29952;
14279
+ static readonly METZTONALLI_WHITE = 29955;
14280
+ static readonly TONAMEYO_WHITE = 29958;
14281
+ static readonly FORTIS_ASH_WHITE = 29961;
14282
+ static readonly CHICHILIHUI_ROS = 29963;
14283
+ static readonly IMPERIAL_ROS = 29966;
14284
+ static readonly XOCHIPALTIC_ROS = 29969;
14285
+ static readonly APPRENTICE_POTION_PACK = 29971;
14286
+ static readonly ADEPT_POTION_PACK = 29972;
14287
+ static readonly EXPERT_POTION_PACK = 29973;
14288
+ static readonly PRESCRIPTION_GOGGLES = 29974;
14289
+ static readonly PRESCRIPTION_GOGGLES_29976 = 29976;
14290
+ static readonly ALCHEMIST_LABCOAT = 29978;
14291
+ static readonly ALCHEMIST_LABCOAT_29980 = 29980;
14292
+ static readonly ALCHEMIST_PANTS = 29982;
14293
+ static readonly ALCHEMIST_PANTS_29984 = 29984;
14294
+ static readonly ALCHEMIST_GLOVES = 29986;
14295
+ static readonly ALCHEMISTS_AMULET = 29988;
14296
+ static readonly ALCHEMISTS_AMULET_29990 = 29990;
14297
+ static readonly ALCHEMISTS_AMULET_29992 = 29992;
14298
+ static readonly ALDARIUM = 29993;
14299
+ static readonly REAGENT_POUCH = 29996;
14300
+ static readonly OPEN_REAGENT_POUCH = 29998;
14301
+ static readonly POTION_STORAGE = 29999;
14302
+ static readonly CHUGGING_BARREL = 30000;
14303
+ static readonly CHUGGING_BARREL_DISASSEMBLED = 30002;
14304
+ static readonly MOX_PASTE = 30005;
14305
+ static readonly AGA_PASTE = 30007;
14306
+ static readonly LYE_PASTE = 30009;
14307
+ static readonly MAMMOTHMIGHT_MIX = 30011;
14308
+ static readonly MYSTIC_MANA_AMALGAM = 30012;
14309
+ static readonly MARLEYS_MOONLIGHT = 30013;
14310
+ static readonly ALCOAUGMENTATOR = 30014;
14311
+ static readonly AQUALUX_AMALGAM = 30015;
14312
+ static readonly AZURE_AURA_MIX = 30016;
14313
+ static readonly LIPLACK_LIQUOR = 30017;
14314
+ static readonly ANTILEECH_LOTION = 30018;
14315
+ static readonly MEGALITE_LIQUID = 30019;
14316
+ static readonly MIXALOT = 30020;
14317
+ static readonly MAMMOTHMIGHT_MIX_30021 = 30021;
14318
+ static readonly MYSTIC_MANA_AMALGAM_30022 = 30022;
14319
+ static readonly MARLEYS_MOONLIGHT_30023 = 30023;
14320
+ static readonly ALCOAUGMENTATOR_30024 = 30024;
14321
+ static readonly AQUALUX_AMALGAM_30025 = 30025;
14322
+ static readonly AZURE_AURA_MIX_30026 = 30026;
14323
+ static readonly LIPLACK_LIQUOR_30027 = 30027;
14324
+ static readonly ANTILEECH_LOTION_30028 = 30028;
14325
+ static readonly MEGALITE_LIQUID_30029 = 30029;
14326
+ static readonly MIXALOT_30030 = 30030;
14327
+ static readonly DIGWEED = 30031;
14328
+ static readonly MIXOLOGY_LAB_NOTES = 30032;
14329
+ static readonly MOONRISE_WINES = 30035;
14330
+ static readonly GRAPE_BARREL = 30037;
14331
+ static readonly TERMITES = 30038;
14332
+ static readonly COLOSSAL_WYRM_TELEPORT_SCROLL = 30040;
14333
+ static readonly CALCIFIED_ACORN = 30042;
14334
+ static readonly GRACEFUL_CRAFTING_KIT = 30044;
14335
+ static readonly GRACEFUL_HOOD_30045 = 30045;
14336
+ static readonly GRACEFUL_HOOD_30047 = 30047;
14337
+ static readonly GRACEFUL_CAPE_30048 = 30048;
14338
+ static readonly GRACEFUL_CAPE_30050 = 30050;
14339
+ static readonly GRACEFUL_TOP_30051 = 30051;
14340
+ static readonly GRACEFUL_TOP_30053 = 30053;
14341
+ static readonly GRACEFUL_LEGS_30054 = 30054;
14342
+ static readonly GRACEFUL_LEGS_30056 = 30056;
14343
+ static readonly GRACEFUL_GLOVES_30057 = 30057;
14344
+ static readonly GRACEFUL_GLOVES_30059 = 30059;
14345
+ static readonly GRACEFUL_BOOTS_30060 = 30060;
14346
+ static readonly GRACEFUL_BOOTS_30062 = 30062;
14347
+ static readonly TOME_OF_EARTH = 30064;
14348
+ static readonly TOME_OF_EARTH_EMPTY = 30066;
14349
+ static readonly SOILED_PAGE = 30068;
14350
+ static readonly DRAGON_HUNTER_WAND = 30070;
14351
+ static readonly HUEYCOATL_HIDE_COIF = 30073;
14352
+ static readonly HUEYCOATL_HIDE_BODY = 30076;
14353
+ static readonly HUEYCOATL_HIDE_CHAPS = 30079;
14354
+ static readonly HUEYCOATL_HIDE_VAMBRACES = 30082;
14355
+ static readonly HUEYCOATL_HIDE = 30085;
14356
+ static readonly HUASCA_SEED = 30088;
14357
+ static readonly GRIMY_HUASCA = 30094;
14358
+ static readonly HUASCA = 30097;
14359
+ static readonly HUASCA_POTION_UNF = 30100;
14360
+ static readonly REDBERRY_ANTELOPE = 30103;
14361
+ static readonly TOOTH_HALF_OF_KEY_30105 = 30105;
14362
+ static readonly LOOP_HALF_OF_KEY_30107 = 30107;
14363
+ static readonly MOON_KEY = 30109;
14364
+ static readonly HELMET_OF_THE_MOON = 30111;
14365
+ static readonly NASTY_TOKEN = 30113;
14366
+ static readonly NASTY_TOKEN_30114 = 30114;
14367
+ static readonly NASTY_TOKEN_30115 = 30115;
14368
+ static readonly NASTY_TOKEN_30116 = 30116;
14369
+ static readonly NASTY_TOKEN_30117 = 30117;
14370
+ static readonly NASTY_TOKEN_30118 = 30118;
14371
+ static readonly NASTY_TOKEN_30119 = 30119;
14372
+ static readonly NASTY_TOKEN_30120 = 30120;
14373
+ static readonly NASTY_TOKEN_30121 = 30121;
14374
+ static readonly NASTY_SURPRISE = 30122;
14375
+ static readonly THE_HUEYCOATL = 30123;
14376
+ static readonly PRAYER_REGENERATION_POTION4 = 30125;
14377
+ static readonly PRAYER_REGENERATION_POTION3 = 30128;
14378
+ static readonly PRAYER_REGENERATION_POTION2 = 30131;
14379
+ static readonly PRAYER_REGENERATION_POTION1 = 30134;
14380
+ static readonly GOADING_POTION4 = 30137;
14381
+ static readonly GOADING_POTION3 = 30140;
14382
+ static readonly GOADING_POTION2 = 30143;
14383
+ static readonly GOADING_POTION1 = 30146;
14384
+ static readonly ALDARIN_TELEPORT = 30149;
14385
+ static readonly BONE_SQUIRREL = 30151;
14386
+ static readonly HUBERTE = 30152;
14387
+ static readonly MOXI = 30154;
14388
+ static readonly BUTLERS_TRAY_30156 = 30156;
14389
+ static readonly BUTLERS_TRAY_30157 = 30157;
14390
+ static readonly SCARECROW_SHIRT = 30232;
14391
+ static readonly HALLOWEEN_SCARECROW = 30234;
14392
+ static readonly SCARECROW_30236 = 30236;
14393
+ static readonly BEIGE_PUMPKIN_DISGUSTED = 30237;
14394
+ static readonly BEIGE_PUMPKIN_SILLY = 30239;
14395
+ static readonly BEIGE_PUMPKIN_EVIL = 30241;
14396
+ static readonly BEIGE_PUMPKIN_ANGRY = 30242;
14397
+ static readonly BEIGE_PUMPKIN_DEPRESSED = 30243;
14398
+ static readonly BEIGE_PUMPKIN_SHOCKED = 30244;
14399
+ static readonly BEIGE_PUMPKIN_SAD = 30245;
14400
+ static readonly BEIGE_PUMPKIN_HAPPY = 30246;
14401
+ static readonly BEIGE_PUMPKIN_LAUGHING = 30247;
14402
+ static readonly WHITE_PUMPKIN_DISGUSTED = 30248;
14403
+ static readonly WHITE_PUMPKIN_SILLY = 30249;
14404
+ static readonly WHITE_PUMPKIN_EVIL = 30250;
14405
+ static readonly WHITE_PUMPKIN_ANGRY = 30251;
14406
+ static readonly WHITE_PUMPKIN_DEPRESSED = 30252;
14407
+ static readonly WHITE_PUMPKIN_SHOCKED = 30253;
14408
+ static readonly WHITE_PUMPKIN_SAD = 30254;
14409
+ static readonly WHITE_PUMPKIN_HAPPY = 30255;
14410
+ static readonly WHITE_PUMPKIN_LAUGHING = 30256;
14411
+ static readonly YELLOW_PUMPKIN_DISGUSTED = 30257;
14412
+ static readonly YELLOW_PUMPKIN_SILLY = 30258;
14413
+ static readonly YELLOW_PUMPKIN_EVIL = 30259;
14414
+ static readonly YELLOW_PUMPKIN_ANGRY = 30260;
14415
+ static readonly YELLOW_PUMPKIN_DEPRESSED = 30261;
14416
+ static readonly YELLOW_PUMPKIN_SHOCKED = 30262;
14417
+ static readonly YELLOW_PUMPKIN_SAD = 30263;
14418
+ static readonly YELLOW_PUMPKIN_HAPPY = 30264;
14419
+ static readonly YELLOW_PUMPKIN_LAUGHING = 30265;
14420
+ static readonly ORANGE_PUMPKIN_DISGUSTED = 30266;
14421
+ static readonly ORANGE_PUMPKIN_SILLY = 30267;
14422
+ static readonly ORANGE_PUMPKIN_EVIL = 30268;
14423
+ static readonly ORANGE_PUMPKIN_ANGRY = 30269;
14424
+ static readonly ORANGE_PUMPKIN_DEPRESSED = 30270;
14425
+ static readonly ORANGE_PUMPKIN_SHOCKED = 30271;
14426
+ static readonly ORANGE_PUMPKIN_SAD = 30272;
14427
+ static readonly ORANGE_PUMPKIN_HAPPY = 30273;
14428
+ static readonly ORANGE_PUMPKIN_LAUGHING = 30274;
14429
+ static readonly RED_PUMPKIN_DISGUSTED = 30275;
14430
+ static readonly RED_PUMPKIN_SILLY = 30276;
14431
+ static readonly RED_PUMPKIN_EVIL = 30277;
14432
+ static readonly RED_PUMPKIN_ANGRY = 30278;
14433
+ static readonly RED_PUMPKIN_DEPRESSED = 30279;
14434
+ static readonly RED_PUMPKIN_SHOCKED = 30280;
14435
+ static readonly RED_PUMPKIN_SAD = 30281;
14436
+ static readonly RED_PUMPKIN_HAPPY = 30282;
14437
+ static readonly RED_PUMPKIN_LAUGHING = 30283;
14438
+ static readonly DARK_GREEN_PUMPKIN_DISGUSTED = 30284;
14439
+ static readonly DARK_GREEN_PUMPKIN_SILLY = 30285;
14440
+ static readonly DARK_GREEN_PUMPKIN_EVIL = 30286;
14441
+ static readonly DARK_GREEN_PUMPKIN_ANGRY = 30287;
14442
+ static readonly DARK_GREEN_PUMPKIN_DEPRESSED = 30288;
14443
+ static readonly DARK_GREEN_PUMPKIN_SHOCKED = 30289;
14444
+ static readonly DARK_GREEN_PUMPKIN_SAD = 30290;
14445
+ static readonly DARK_GREEN_PUMPKIN_HAPPY = 30291;
14446
+ static readonly DARK_GREEN_PUMPKIN_LAUGHING = 30292;
14447
+ static readonly POWDER_GREY_PUMPKIN_DISGUSTED = 30293;
14448
+ static readonly POWDER_GREY_PUMPKIN_SILLY = 30294;
14449
+ static readonly POWDER_GREY_PUMPKIN_EVIL = 30295;
14450
+ static readonly POWDER_GREY_PUMPKIN_ANGRY = 30296;
14451
+ static readonly POWDER_GREY_PUMPKIN_DEPRESSED = 30297;
14452
+ static readonly POWDER_GREY_PUMPKIN_SHOCKED = 30298;
14453
+ static readonly POWDER_GREY_PUMPKIN_SAD = 30299;
14454
+ static readonly POWDER_GREY_PUMPKIN_HAPPY = 30300;
14455
+ static readonly POWDER_GREY_PUMPKIN_LAUGHING = 30301;
14456
+ static readonly TORVA_FULL_HELM_30302 = 30302;
14457
+ static readonly TORVA_PLATEBODY_30303 = 30303;
14458
+ static readonly TORVA_PLATELEGS_30304 = 30304;
14459
+ static readonly ARCLIGHT_INACTIVE = 30305;
14460
+ static readonly ELIAS_MESSAGE = 30307;
14461
+ static readonly MASTABA_KEY = 30308;
14462
+ static readonly MASTABA_KEY_30309 = 30309;
14463
+ static readonly BASE_PLANS = 30310;
14464
+ static readonly BASE_KEY = 30311;
14465
+ static readonly CANOPIC_JAR_OIL = 30312;
14466
+ static readonly CANOPIC_JAR_OIL_AND_BERRIES = 30313;
14467
+ static readonly CANOPIC_JAR_FULL = 30314;
14468
+ static readonly CODE_KEY = 30316;
14469
+ static readonly DECODER_STRIPS = 30317;
14470
+ static readonly MAHJARRAT_NOTES_AJ = 30318;
14471
+ static readonly MAHJARRAT_NOTES_KZ = 30319;
14472
+ static readonly ARRAVS_AXE = 30320;
14473
+ static readonly ZOMBIE_HELMET = 30321;
14474
+ static readonly BROKEN_ZOMBIE_HELMET = 30324;
14475
+ static readonly DUST = 30328;
14476
+ static readonly RAGING_ECHOES_RELIC_HUNTER_T1_ARMOUR_SET = 30331;
14477
+ static readonly RAGING_ECHOES_RELIC_HUNTER_T2_ARMOUR_SET = 30334;
14478
+ static readonly RAGING_ECHOES_RELIC_HUNTER_T3_ARMOUR_SET = 30337;
14479
+ static readonly CRYSTAL_DAGGER_PERFECTED = 30340;
14480
+ static readonly INFERNAL_HARPOON_OR_30342 = 30342;
14481
+ static readonly INFERNAL_HARPOON_UNCHARGED_30343 = 30343;
14482
+ static readonly INFERNAL_PICKAXE_OR_30345 = 30345;
14483
+ static readonly INFERNAL_PICKAXE_UNCHARGED_30346 = 30346;
14484
+ static readonly INFERNAL_AXE_OR_30347 = 30347;
14485
+ static readonly INFERNAL_AXE_UNCHARGED_30348 = 30348;
14486
+ static readonly DRAGON_HARPOON_OR_30349 = 30349;
14487
+ static readonly DRAGON_PICKAXE_OR_30351 = 30351;
14488
+ static readonly DRAGON_AXE_OR_30352 = 30352;
14489
+ static readonly CABBAGE_30353 = 30353;
14490
+ static readonly CABBAGE_30355 = 30355;
14491
+ static readonly FORAGERS_POUCH = 30357;
14492
+ static readonly LEPRECHAUNS_VAULT = 30359;
14493
+ static readonly BANKERS_BRIEFCASE = 30361;
14494
+ static readonly CLUE_COMPASS = 30363;
14495
+ static readonly POCKET_KINGDOM = 30365;
14496
+ static readonly THE_DOGSWORD = 30367;
14497
+ static readonly SUNLIGHT_SPEAR = 30369;
14498
+ static readonly DEVILS_ELEMENT = 30371;
14499
+ static readonly DRYGORE_BLOWPIPE_EMPTY = 30373;
14500
+ static readonly DRYGORE_BLOWPIPE = 30374;
14501
+ static readonly AMULET_OF_THE_MONARCHS = 30376;
14502
+ static readonly EMPEROR_RING = 30378;
14503
+ static readonly GLOVES_OF_THE_DAMNED = 30380;
14504
+ static readonly THOUSANDDRAGON_WARD = 30382;
14505
+ static readonly CRYSTAL_BLESSING = 30384;
14506
+ static readonly SUNLIT_BRACERS = 30386;
14507
+ static readonly THUNDER_KHOPESH = 30388;
14508
+ static readonly NATURES_REPRISAL = 30390;
14509
+ static readonly NATURES_REPRISAL_UNCHARGED = 30392;
14510
+ static readonly ASGARNIA_ECHO_ORB = 30393;
14511
+ static readonly DESERT_ECHO_ORB = 30394;
14512
+ static readonly FREMENNIK_ECHO_ORB = 30395;
14513
+ static readonly KANDARIN_ECHO_ORB = 30396;
14514
+ static readonly MORYTANIA_ECHO_ORB = 30397;
14515
+ static readonly TIRANNWN_ECHO_ORB = 30398;
14516
+ static readonly WILDERNESS_ECHO_ORB = 30399;
14517
+ static readonly KOUREND_ECHO_ORB = 30400;
14518
+ static readonly VARLAMORE_ECHO_ORB = 30401;
14519
+ static readonly RAIDS_MEGARARE_VOUCHER = 30402;
14520
+ static readonly RAGING_ECHOES_HAT_T1 = 30404;
14521
+ static readonly RAGING_ECHOES_TOP_T1 = 30406;
14522
+ static readonly RAGING_ECHOES_ROBESKIRT_T1 = 30408;
14523
+ static readonly RAGING_ECHOES_BOOTS_T1 = 30410;
14524
+ static readonly RAGING_ECHOES_HAT_T2 = 30412;
14525
+ static readonly RAGING_ECHOES_TOP_T2 = 30414;
14526
+ static readonly RAGING_ECHOES_ROBESKIRT_T2 = 30416;
14527
+ static readonly RAGING_ECHOES_BOOTS_T2 = 30418;
14528
+ static readonly RAGING_ECHOES_HAT_T3 = 30420;
14529
+ static readonly RAGING_ECHOES_TOP_T3 = 30422;
14530
+ static readonly RAGING_ECHOES_ROBESKIRT_T3 = 30424;
14531
+ static readonly RAGING_ECHOES_BOOTS_T3 = 30426;
14532
+ static readonly RAGING_ECHOES_CANE = 30428;
14533
+ static readonly RAGING_ECHOES_BANNER = 30430;
14534
+ static readonly ECHO_VENATOR_BOW_ORNAMENT_KIT = 30432;
14535
+ static readonly ECHO_VENATOR_BOW = 30434;
14536
+ static readonly ECHO_VENATOR_BOW_UNCHARGED = 30436;
14537
+ static readonly ECHO_VIRTUS_MASK = 30437;
14538
+ static readonly ECHO_VIRTUS_ROBE_TOP = 30439;
14539
+ static readonly ECHO_VIRTUS_ROBE_BOTTOM = 30441;
14540
+ static readonly ECHO_VIRTUS_ORNAMENT_KIT = 30443;
14541
+ static readonly ECHO_AHRIMS_HOOD = 30445;
14542
+ static readonly ECHO_AHRIMS_ROBETOP = 30447;
14543
+ static readonly ECHO_AHRIMS_ROBESKIRT = 30449;
14544
+ static readonly ECHO_AHRIMS_ORNAMENT_KIT = 30451;
14545
+ static readonly ECHO_HOME_TELEPORT_SCROLL = 30453;
14546
+ static readonly RAGING_ECHOES_DEATH_SCROLL = 30455;
14547
+ static readonly RAGING_ECHOES_NPC_CONTACT_SCROLL = 30457;
14548
+ static readonly RAGING_ECHOES_NEXUS_SCROLL = 30459;
14549
+ static readonly RAGING_ECHOES_PORTAL_SCROLL = 30461;
14550
+ static readonly RAGING_ECHOES_DRAGON_TROPHY = 30465;
14551
+ static readonly RAGING_ECHOES_RUNE_TROPHY = 30467;
14552
+ static readonly RAGING_ECHOES_ADAMANT_TROPHY = 30469;
14553
+ static readonly RAGING_ECHOES_MITHRIL_TROPHY = 30471;
14554
+ static readonly RAGING_ECHOES_STEEL_TROPHY = 30473;
14555
+ static readonly RAGING_ECHOES_IRON_TROPHY = 30475;
14556
+ static readonly RAGING_ECHOES_BRONZE_TROPHY = 30477;
14557
+ static readonly PRESENT_BOX_HAT = 30479;
14558
+ static readonly PRESENT_BOX_HAT_30481 = 30481;
14559
+ static readonly PRESENT_BOX_HAT_30483 = 30483;
14560
+ static readonly PRESENT_BOX_HAT_30485 = 30485;
14561
+ static readonly DOG_DISGUISE = 30487;
14562
+ static readonly FESTIVE_SCARF = 30489;
14563
+ static readonly DOG_BOOTS = 30491;
14564
+ static readonly SPIRIT_TREE_30495 = 30495;
14565
+ static readonly SPIRIT_TREE_30496 = 30496;
14566
+ static readonly RAGING_ECHOES_PORTAL_NEXUS = 30497;
14567
+ static readonly RAGING_ECHOES_PORTAL = 30498;
14568
+ static readonly SCRYING_POOL_30499 = 30499;
14569
+ static readonly RAGING_ECHOES_SPIRIT_TREE__FAIRY_RING = 30500;
14570
+ static readonly RAGING_ECHOES_RUG = 30501;
14571
+ static readonly RAGING_ECHOES_CURTAINS = 30502;
14572
+ static readonly ECHO_AHRIMS_HOOD_100 = 30519;
14573
+ static readonly ECHO_AHRIMS_ROBETOP_100 = 30521;
14574
+ static readonly ECHO_AHRIMS_ROBESKIRT_100 = 30523;
14575
+ static readonly ECHO_AHRIMS_HOOD_75 = 30525;
14576
+ static readonly ECHO_AHRIMS_ROBETOP_75 = 30527;
14577
+ static readonly ECHO_AHRIMS_ROBESKIRT_75 = 30529;
14578
+ static readonly ECHO_AHRIMS_HOOD_50 = 30531;
14579
+ static readonly ECHO_AHRIMS_ROBETOP_50 = 30533;
14580
+ static readonly ECHO_AHRIMS_ROBESKIRT_50 = 30535;
14581
+ static readonly ECHO_AHRIMS_HOOD_25 = 30537;
14582
+ static readonly ECHO_AHRIMS_ROBETOP_25 = 30539;
14583
+ static readonly ECHO_AHRIMS_ROBESKIRT_25 = 30541;
14584
+ static readonly ECHO_AHRIMS_HOOD_0 = 30543;
14585
+ static readonly ECHO_AHRIMS_ROBETOP_0 = 30545;
14586
+ static readonly ECHO_AHRIMS_ROBESKIRT_0 = 30547;
14587
+ static readonly RAGING_ECHOES_RUG_30554 = 30554;
14588
+ static readonly RAGING_ECHOES_CURTAINS_30557 = 30557;
14589
+ static readonly RAGING_ECHOES_SCRYING_POOL_SCROLL = 30560;
14590
+ static readonly RAGING_ECHOES_SPIRIT_TREE_SCROLL = 30563;
14591
+ static readonly RAGING_ECHOES_SPIRIT_TREE = 30567;
14592
+ static readonly ECHO_AHRIMS_STAFF = 30568;
14593
+ static readonly ECHO_AHRIMS_STAFF_100 = 30570;
14594
+ static readonly ECHO_AHRIMS_STAFF_75 = 30571;
14595
+ static readonly ECHO_AHRIMS_STAFF_50 = 30572;
14596
+ static readonly ECHO_AHRIMS_STAFF_25 = 30573;
14597
+ static readonly ECHO_AHRIMS_STAFF_0 = 30574;
14598
+ static readonly BOUNTY_SUPPLY_CRATE = 30576;
14599
+ static readonly COLLECTION_LOG_30579 = 30579;
14600
+ static readonly COLLECTION_LOG_30581 = 30581;
14601
+ static readonly COLLECTION_LOG_30583 = 30583;
14602
+ static readonly COLLECTION_LOG_30585 = 30585;
14603
+ static readonly COLLECTION_LOG_30587 = 30587;
14604
+ static readonly COLLECTION_LOG_30589 = 30589;
14605
+ static readonly COLLECTION_LOG_30591 = 30591;
14606
+ static readonly COLLECTION_LOG_30593 = 30593;
14607
+ static readonly COLLECTION_LOG_30595 = 30595;
14608
+ static readonly BRONZE_STAFF_OF_COLLECTION = 30597;
14609
+ static readonly IRON_STAFF_OF_COLLECTION = 30599;
14610
+ static readonly STEEL_STAFF_OF_COLLECTION = 30601;
14611
+ static readonly BLACK_STAFF_OF_COLLECTION = 30603;
14612
+ static readonly MITHRIL_STAFF_OF_COLLECTION = 30605;
14613
+ static readonly ADAMANT_STAFF_OF_COLLECTION = 30607;
14614
+ static readonly RUNE_STAFF_OF_COLLECTION = 30609;
14615
+ static readonly DRAGON_STAFF_OF_COLLECTION = 30611;
14616
+ static readonly GILDED_STAFF_OF_COLLECTION = 30613;
14617
+ static readonly BOUNTY_SUPPLY_CRATE_MANTA_RAY = 30616;
14618
+ static readonly BOUNTY_SUPPLY_CRATE_ANGLERFISH = 30619;
14619
+ static readonly BRAN = 30622;
14620
+ static readonly RIC = 30624;
14621
+ static readonly DEADEYE_PRAYER_SCROLL = 30626;
14622
+ static readonly MYSTIC_VIGOUR_PRAYER_SCROLL = 30627;
14623
+ static readonly ICE_ELEMENT_STAFF_CROWN = 30628;
14624
+ static readonly FIRE_ELEMENT_STAFF_CROWN = 30631;
14625
+ static readonly TWINFLAME_STAFF = 30634;
14626
+ static readonly GIANTSOUL_AMULET_UNCHARGED = 30637;
14627
+ static readonly GIANTSOUL_AMULET = 30638;
14628
+ static readonly DESICCATED_PAGE = 30640;
14629
+ static readonly HUNTERS_LOOT_SACK_SUPPLIES = 30644;
14630
+ static readonly CLASSIC_IMP_TAIL = 30646;
14631
+ static readonly CLASSIC_IMP_HOOD = 30648;
14632
+ static readonly TEAK_DISPLAY = 30650;
14633
+ static readonly MAHOGANY_DISPLAY = 30651;
14634
+ static readonly MAHOGANY_DISPLAY_30652 = 30652;
14635
+ static readonly GILDED_DISPLAY = 30653;
14636
+ static readonly GILDED_DISPLAY_30654 = 30654;
14637
+ static readonly CRAWLING_HAND_30655 = 30655;
14638
+ static readonly CRAWLING_HAND_30656 = 30656;
14639
+ static readonly COCKATRICE_HEAD_30657 = 30657;
14640
+ static readonly COCKATRICE_HEAD_30658 = 30658;
14641
+ static readonly BASILISK_HEAD_30659 = 30659;
14642
+ static readonly BASILISK_HEAD_30660 = 30660;
14643
+ static readonly KURASK_HEAD_30661 = 30661;
14644
+ static readonly ABYSSAL_HEAD_30662 = 30662;
14645
+ static readonly OAK_DISPLAY = 30663;
14646
+ static readonly TEAK_DISPLAY_30664 = 30664;
14647
+ static readonly TEAK_DISPLAY_30665 = 30665;
14648
+ static readonly MAHOGANY_DISPLAY_30666 = 30666;
14649
+ static readonly MAHOGANY_DISPLAY_30667 = 30667;
14650
+ static readonly MOUNTED_BASS_30668 = 30668;
14651
+ static readonly MOUNTED_BASS_30669 = 30669;
14652
+ static readonly MOUNTED_SWORDFISH_30670 = 30670;
14653
+ static readonly MOUNTED_HARPOONFISH_30671 = 30671;
14654
+ static readonly NIMBLENESS_CHARM = 30676;
14655
+ static readonly STOCKPILING_CHARM = 30679;
14656
+ static readonly ACCUMULATION_CHARM = 30682;
14657
+ static readonly VULNERABILITY_CHARM = 30685;
14658
+ static readonly BROKEN_CHARM = 30688;
14659
+ static readonly TRINKET_DUST = 30689;
14660
+ static readonly CASTLE_WARS_SUPPLY_CRATE = 30690;
14661
+ static readonly RUNE_POUCH_30692 = 30692;
14662
+ static readonly CASTLE_WARS_ARROW = 30694;
14663
+ static readonly CASTLE_WARS_BOLTS = 30696;
14664
+ static readonly CARROT_COSTUME_HAT = 30720;
14665
+ static readonly CARROT_COSTUME_BODY = 30722;
14666
+ static readonly CARROT_COSTUME_TIGHTS = 30724;
14667
+ static readonly CARROT_COSTUME_GLOVES = 30726;
14668
+ static readonly OATHPLATE_ARMOUR_SET = 30744;
14669
+ static readonly DEMON_DUNG = 30747;
14670
+ static readonly OATHPLATE_HELM = 30750;
14671
+ static readonly OATHPLATE_CHEST = 30753;
14672
+ static readonly OATHPLATE_LEGS = 30756;
14673
+ static readonly SOULFLAME_HORN = 30759;
14674
+ static readonly FORGOTTEN_LOCKBOX = 30763;
14675
+ static readonly OATHPLATE_SHARDS = 30765;
14676
+ static readonly AETHER_CATALYST = 30771;
14677
+ static readonly DIABOLIC_WORMS = 30773;
14678
+ static readonly CHASM_TELEPORT_SCROLL = 30775;
14679
+ static readonly RADIANT_OATHPLATE_HELM = 30777;
14680
+ static readonly RADIANT_OATHPLATE_CHEST = 30779;
14681
+ static readonly RADIANT_OATHPLATE_LEGS = 30781;
14682
+ static readonly PURIFYING_SIGIL_LEFT = 30783;
14683
+ static readonly PURIFYING_SIGIL_RIGHT = 30785;
14684
+ static readonly PURIFYING_SIGIL_MIDDLE = 30787;
14685
+ static readonly PURIFYING_SIGIL_TOP = 30789;
14686
+ static readonly PURIFYING_SIGIL_BOTTOM = 30791;
14687
+ static readonly PURIFYING_SIGIL = 30793;
14688
+ static readonly BARREL_OF_DEMONIC_TALLOW_FULL = 30795;
14689
+ static readonly BARREL_OF_DEMONIC_TALLOW = 30798;
14690
+ static readonly DEMONIC_TALLOW = 30800;
14691
+ static readonly DOSSIER_30803 = 30803;
14692
+ static readonly DOSSIER_30805 = 30805;
14693
+ static readonly RITE_OF_VILE_TRANSFERENCE = 30806;
14694
+ static readonly JIMS_WET_CLOTH = 30808;
14695
+ static readonly CONTRACT_OF_GLYPHIC_ATTENUATION = 30810;
14696
+ static readonly CONTRACT_OF_SENSORY_CLOUDING = 30813;
14697
+ static readonly CONTRACT_OF_BLOODIED_BLOWS = 30816;
14698
+ static readonly CONTRACT_OF_DIVINE_SEVERANCE = 30819;
14699
+ static readonly CONTRACT_OF_FORFEIT_BREATH = 30822;
14700
+ static readonly CONTRACT_OF_OATHPLATE_ACQUISITION = 30825;
14701
+ static readonly CONTRACT_OF_SHARD_ACQUISITION = 30828;
14702
+ static readonly CONTRACT_OF_CATALYST_ACQUISITION = 30831;
14703
+ static readonly CONTRACT_OF_WORM_ACQUISITION = 30834;
14704
+ static readonly CONTRACT_OF_HARMONY_ACQUISITION = 30837;
14705
+ static readonly CONTRACT_OF_FAMILIAR_ACQUISITION = 30840;
14706
+ static readonly AETHER_RUNE = 30843;
14707
+ static readonly INFERNAL_SHALE = 30846;
14708
+ static readonly CRUSHED_INFERNAL_SHALE = 30848;
14709
+ static readonly INFERNAL_BLEND = 30854;
14710
+ static readonly MALFORMED_INFERNAL_BLEND = 30856;
14711
+ static readonly INFERNAL_NUGGET = 30858;
14712
+ static readonly COOLED_INFERNAL_CHUNK = 30860;
14713
+ static readonly INFERNAL_CHUNK = 30862;
14714
+ static readonly INFERNAL_PLATE = 30864;
14715
+ static readonly SURGE_POTION4 = 30875;
14716
+ static readonly SURGE_POTION3 = 30878;
14717
+ static readonly SURGE_POTION2 = 30881;
14718
+ static readonly SURGE_POTION1 = 30884;
14719
+ static readonly POLYCATALYTIC_GUARDIAN_STONE = 30887;
14720
+ static readonly YAMI = 30888;
14721
+
14722
+ /* This file is automatically generated. Do not edit. */
14015
14723
  }
14016
14724
  }