@deafwave/osrs-botmaker-types 0.2.12 → 0.3.0

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 (285) hide show
  1. package/README.md +3 -1
  2. package/dist/src/api/index.d.ts +1 -0
  3. package/dist/src/api/index.js +1 -0
  4. package/dist/src/index.d.ts +1 -1
  5. package/dist/src/types/java/awt/BasicStroke.d.ts +2 -9
  6. package/dist/src/types/java/awt/Color.d.ts +20 -3
  7. package/dist/src/types/java/awt/Dimension.d.ts +55 -0
  8. package/dist/src/types/java/awt/Graphics2D.d.ts +4 -17
  9. package/dist/src/types/java/index.d.ts +3 -6
  10. package/dist/src/types/java/lang/index.d.ts +30 -0
  11. package/dist/src/types/java/util/index.d.ts +231 -0
  12. package/dist/src/types/runelite/index.d.ts +7 -1
  13. package/dist/src/types/runelite/net/runelite/api/ChatMessageType.d.ts +174 -295
  14. package/dist/src/types/runelite/net/runelite/api/Client.d.ts +6 -6
  15. package/dist/src/types/runelite/net/runelite/api/Deque.d.ts +1 -1
  16. package/dist/src/types/runelite/net/runelite/api/EquipmentInventorySlot.d.ts +30 -61
  17. package/dist/src/types/runelite/net/runelite/api/FriendContainer.d.ts +1 -1
  18. package/dist/src/types/runelite/net/runelite/api/GameState.d.ts +55 -78
  19. package/dist/src/types/runelite/net/runelite/api/InventoryID.d.ts +23 -180
  20. package/dist/src/types/runelite/net/runelite/api/ItemID.d.ts +355 -23
  21. package/dist/src/types/runelite/net/runelite/api/PlayerComposition.d.ts +1 -1
  22. package/dist/src/types/runelite/net/runelite/api/SpritePixels.d.ts +1 -1
  23. package/dist/src/types/runelite/net/runelite/api/WorldView.d.ts +2 -2
  24. package/dist/src/types/runelite/net/runelite/api/coords/WorldArea.d.ts +19 -31
  25. package/dist/src/types/runelite/net/runelite/api/widgets/ComponentID.d.ts +2171 -0
  26. package/dist/src/types/runelite/net/runelite/api/widgets/InterfaceID.d.ts +318 -0
  27. package/dist/src/types/runelite/net/runelite/api/widgets/Widget.d.ts +1 -1
  28. package/dist/src/types/runelite/net/runelite/client/chat/ChatMessageBuilder.d.ts +7 -8
  29. package/dist/src/types/runelite/net/runelite/client/chat/ChatMessageManager.d.ts +38 -39
  30. package/dist/src/types/runelite/net/runelite/client/config/ChatColorConfig.d.ts +80 -80
  31. package/dist/src/types/runelite/net/runelite/client/config/RuneLiteConfig.d.ts +3 -3
  32. package/dist/src/types/runelite/net/runelite/client/game/ItemManager.d.ts +5 -21
  33. package/dist/src/types/runelite/net/runelite/client/game/npcoverlay/NpcMinimapOverlay.d.ts +4 -5
  34. package/dist/src/types/runelite/net/runelite/client/game/npcoverlay/NpcOverlay.d.ts +11 -6
  35. package/dist/src/types/runelite/net/runelite/client/plugins/agility/AgilityConfig.d.ts +6 -6
  36. package/dist/src/types/runelite/net/runelite/client/plugins/agility/AgilityOverlay.d.ts +10 -6
  37. package/dist/src/types/runelite/net/runelite/client/plugins/agility/LapCounterOverlay.d.ts +4 -5
  38. package/dist/src/types/runelite/net/runelite/client/plugins/attackstyles/AttackStylesOverlay.d.ts +3 -4
  39. package/dist/src/types/runelite/net/runelite/client/plugins/barbarianassault/HealerOverlay.d.ts +79 -41
  40. package/dist/src/types/runelite/net/runelite/client/plugins/barbarianassault/TimerOverlay.d.ts +3 -4
  41. package/dist/src/types/runelite/net/runelite/client/plugins/barrows/BarrowsBrotherSlainOverlay.d.ts +20 -21
  42. package/dist/src/types/runelite/net/runelite/client/plugins/barrows/BarrowsConfig.d.ts +2 -2
  43. package/dist/src/types/runelite/net/runelite/client/plugins/barrows/BarrowsOverlay.d.ts +4 -5
  44. package/dist/src/types/runelite/net/runelite/client/plugins/blastfurnace/BlastFurnaceClickBoxOverlay.d.ts +5 -6
  45. package/dist/src/types/runelite/net/runelite/client/plugins/blastfurnace/BlastFurnaceCofferOverlay.d.ts +3 -4
  46. package/dist/src/types/runelite/net/runelite/client/plugins/blastfurnace/BlastFurnaceOverlay.d.ts +4 -5
  47. package/dist/src/types/runelite/net/runelite/client/plugins/blastmine/BlastMineOreCountOverlay.d.ts +4 -5
  48. package/dist/src/types/runelite/net/runelite/client/plugins/blastmine/BlastMinePluginConfig.d.ts +2 -2
  49. package/dist/src/types/runelite/net/runelite/client/plugins/blastmine/BlastMineRockOverlay.d.ts +7 -8
  50. package/dist/src/types/runelite/net/runelite/client/plugins/boosts/BoostIndicator.d.ts +6 -7
  51. package/dist/src/types/runelite/net/runelite/client/plugins/boosts/BoostsOverlay.d.ts +4 -5
  52. package/dist/src/types/runelite/net/runelite/client/plugins/boosts/CompactBoostsOverlay.d.ts +15 -9
  53. package/dist/src/types/runelite/net/runelite/client/plugins/boosts/StatChangeIndicator.d.ts +5 -6
  54. package/dist/src/types/runelite/net/runelite/client/plugins/cannon/CannonConfig.d.ts +1 -1
  55. package/dist/src/types/runelite/net/runelite/client/plugins/cannon/CannonCounter.d.ts +4 -5
  56. package/dist/src/types/runelite/net/runelite/client/plugins/cannon/CannonOverlay.d.ts +13 -10
  57. package/dist/src/types/runelite/net/runelite/client/plugins/cannon/CannonPlugin.d.ts +16 -15
  58. package/dist/src/types/runelite/net/runelite/client/plugins/cannon/CannonSpotOverlay.d.ts +10 -5
  59. package/dist/src/types/runelite/net/runelite/client/plugins/chatchannel/ChatChannelConfig.d.ts +1 -1
  60. package/dist/src/types/runelite/net/runelite/client/plugins/chatchannel/ChatChannelPlugin.d.ts +46 -43
  61. package/dist/src/types/runelite/net/runelite/client/plugins/cluescrolls/ClueScrollEmoteOverlay.d.ts +3 -4
  62. package/dist/src/types/runelite/net/runelite/client/plugins/cluescrolls/ClueScrollMusicOverlay.d.ts +3 -4
  63. package/dist/src/types/runelite/net/runelite/client/plugins/cluescrolls/ClueScrollOverlay.d.ts +3 -4
  64. package/dist/src/types/runelite/net/runelite/client/plugins/cluescrolls/ClueScrollWorldOverlay.d.ts +3 -4
  65. package/dist/src/types/runelite/net/runelite/client/plugins/combatlevel/CombatLevelOverlay.d.ts +4 -5
  66. package/dist/src/types/runelite/net/runelite/client/plugins/config/ConfigPanel.d.ts +29 -27
  67. package/dist/src/types/runelite/net/runelite/client/plugins/config/FixedWidthPanel.d.ts +3 -4
  68. package/dist/src/types/runelite/net/runelite/client/plugins/config/NotificationPanel.d.ts +13 -14
  69. package/dist/src/types/runelite/net/runelite/client/plugins/config/PluginListPanel.d.ts +19 -20
  70. package/dist/src/types/runelite/net/runelite/client/plugins/cooking/CookingOverlay.d.ts +4 -5
  71. package/dist/src/types/runelite/net/runelite/client/plugins/cooking/FermentTimer.d.ts +7 -8
  72. package/dist/src/types/runelite/net/runelite/client/plugins/corp/CorpDamageOverlay.d.ts +3 -4
  73. package/dist/src/types/runelite/net/runelite/client/plugins/devtools/CameraOverlay.d.ts +3 -4
  74. package/dist/src/types/runelite/net/runelite/client/plugins/devtools/DevToolsOverlay.d.ts +15 -16
  75. package/dist/src/types/runelite/net/runelite/client/plugins/devtools/InventoryDeltaPanel.d.ts +12 -13
  76. package/dist/src/types/runelite/net/runelite/client/plugins/devtools/LocationOverlay.d.ts +3 -4
  77. package/dist/src/types/runelite/net/runelite/client/plugins/devtools/SceneOverlay.d.ts +17 -13
  78. package/dist/src/types/runelite/net/runelite/client/plugins/devtools/SoundEffectOverlay.d.ts +6 -7
  79. package/dist/src/types/runelite/net/runelite/client/plugins/devtools/WidgetInspector.d.ts +19 -20
  80. package/dist/src/types/runelite/net/runelite/client/plugins/devtools/WidgetInspectorOverlay.d.ts +4 -5
  81. package/dist/src/types/runelite/net/runelite/client/plugins/devtools/WorldMapLocationOverlay.d.ts +3 -4
  82. package/dist/src/types/runelite/net/runelite/client/plugins/devtools/WorldMapRegionOverlay.d.ts +6 -7
  83. package/dist/src/types/runelite/net/runelite/client/plugins/dpscounter/DpsOverlay.d.ts +5 -6
  84. package/dist/src/types/runelite/net/runelite/client/plugins/driftnet/DriftNetConfig.d.ts +3 -3
  85. package/dist/src/types/runelite/net/runelite/client/plugins/driftnet/DriftNetOverlay.d.ts +6 -7
  86. package/dist/src/types/runelite/net/runelite/client/plugins/fishing/FishingConfig.d.ts +4 -4
  87. package/dist/src/types/runelite/net/runelite/client/plugins/fishing/FishingOverlay.d.ts +3 -4
  88. package/dist/src/types/runelite/net/runelite/client/plugins/fishing/FishingSpotMinimapOverlay.d.ts +3 -4
  89. package/dist/src/types/runelite/net/runelite/client/plugins/fishing/FishingSpotOverlay.d.ts +4 -5
  90. package/dist/src/types/runelite/net/runelite/client/plugins/fps/FpsOverlay.d.ts +16 -17
  91. package/dist/src/types/runelite/net/runelite/client/plugins/friendnotes/FriendNoteOverlay.d.ts +3 -4
  92. package/dist/src/types/runelite/net/runelite/client/plugins/gpu/GpuPluginConfig.d.ts +1 -1
  93. package/dist/src/types/runelite/net/runelite/client/plugins/grandexchange/GrandExchangeItemPanel.d.ts +7 -8
  94. package/dist/src/types/runelite/net/runelite/client/plugins/grandexchange/GrandExchangeOfferSlot.d.ts +13 -14
  95. package/dist/src/types/runelite/net/runelite/client/plugins/grounditems/GroundItemsConfig.d.ts +7 -7
  96. package/dist/src/types/runelite/net/runelite/client/plugins/grounditems/GroundItemsOverlay.d.ts +34 -29
  97. package/dist/src/types/runelite/net/runelite/client/plugins/grounditems/GroundItemsPlugin.d.ts +47 -48
  98. package/dist/src/types/runelite/net/runelite/client/plugins/grounditems/Lootbeam.d.ts +20 -13
  99. package/dist/src/types/runelite/net/runelite/client/plugins/groundmarkers/GroundMarkerConfig.d.ts +1 -1
  100. package/dist/src/types/runelite/net/runelite/client/plugins/groundmarkers/GroundMarkerMinimapOverlay.d.ts +5 -6
  101. package/dist/src/types/runelite/net/runelite/client/plugins/groundmarkers/GroundMarkerOverlay.d.ts +11 -6
  102. package/dist/src/types/runelite/net/runelite/client/plugins/groundmarkers/GroundMarkerPlugin.d.ts +24 -25
  103. package/dist/src/types/runelite/net/runelite/client/plugins/herbiboars/HerbiboarConfig.d.ts +4 -4
  104. package/dist/src/types/runelite/net/runelite/client/plugins/herbiboars/HerbiboarMinimapOverlay.d.ts +3 -4
  105. package/dist/src/types/runelite/net/runelite/client/plugins/herbiboars/HerbiboarOverlay.d.ts +4 -5
  106. package/dist/src/types/runelite/net/runelite/client/plugins/hunter/HunterConfig.d.ts +4 -4
  107. package/dist/src/types/runelite/net/runelite/client/plugins/hunter/TrapOverlay.d.ts +51 -40
  108. package/dist/src/types/runelite/net/runelite/client/plugins/implings/ImplingsConfig.d.ts +13 -13
  109. package/dist/src/types/runelite/net/runelite/client/plugins/implings/ImplingsOverlay.d.ts +9 -5
  110. package/dist/src/types/runelite/net/runelite/client/plugins/implings/ImplingsPlugin.d.ts +11 -12
  111. package/dist/src/types/runelite/net/runelite/client/plugins/instancemap/InstanceMapOverlay.d.ts +60 -55
  112. package/dist/src/types/runelite/net/runelite/client/plugins/interacthighlight/InteractHighlightConfig.d.ts +6 -6
  113. package/dist/src/types/runelite/net/runelite/client/plugins/interacthighlight/InteractHighlightOverlay.d.ts +7 -8
  114. package/dist/src/types/runelite/net/runelite/client/plugins/inventorygrid/InventoryGridConfig.d.ts +2 -2
  115. package/dist/src/types/runelite/net/runelite/client/plugins/inventorygrid/InventoryGridOverlay.d.ts +9 -7
  116. package/dist/src/types/runelite/net/runelite/client/plugins/inventorytags/InventoryTagsOverlay.d.ts +6 -7
  117. package/dist/src/types/runelite/net/runelite/client/plugins/inventoryviewer/InventoryViewerOverlay.d.ts +6 -7
  118. package/dist/src/types/runelite/net/runelite/client/plugins/itemcharges/ItemChargeConfig.d.ts +2 -2
  119. package/dist/src/types/runelite/net/runelite/client/plugins/itemcharges/ItemChargeInfobox.d.ts +3 -4
  120. package/dist/src/types/runelite/net/runelite/client/plugins/itemcharges/ItemChargePlugin.d.ts +33 -34
  121. package/dist/src/types/runelite/net/runelite/client/plugins/itemidentification/ItemIdentificationConfig.d.ts +1 -1
  122. package/dist/src/types/runelite/net/runelite/client/plugins/itemprices/ItemPricesOverlay.d.ts +16 -17
  123. package/dist/src/types/runelite/net/runelite/client/plugins/itemstats/ItemStatConfig.d.ts +5 -5
  124. package/dist/src/types/runelite/net/runelite/client/plugins/itemstats/ItemStatOverlay.d.ts +30 -18
  125. package/dist/src/types/runelite/net/runelite/client/plugins/itemstats/Positivity.d.ts +68 -44
  126. package/dist/src/types/runelite/net/runelite/client/plugins/kourendlibrary/KourendLibraryOverlay.d.ts +9 -10
  127. package/dist/src/types/runelite/net/runelite/client/plugins/kourendlibrary/KourendLibraryTutorialOverlay.d.ts +3 -4
  128. package/dist/src/types/runelite/net/runelite/client/plugins/minimap/MinimapConfig.d.ts +7 -7
  129. package/dist/src/types/runelite/net/runelite/client/plugins/minimap/MinimapDot.d.ts +4 -5
  130. package/dist/src/types/runelite/net/runelite/client/plugins/minimap/MinimapPlugin.d.ts +13 -14
  131. package/dist/src/types/runelite/net/runelite/client/plugins/mining/MiningOverlay.d.ts +3 -4
  132. package/dist/src/types/runelite/net/runelite/client/plugins/mining/MiningRocksOverlay.d.ts +16 -17
  133. package/dist/src/types/runelite/net/runelite/client/plugins/motherlode/MiningOverlay.d.ts +4 -5
  134. package/dist/src/types/runelite/net/runelite/client/plugins/motherlode/MotherlodeSceneOverlay.d.ts +8 -9
  135. package/dist/src/types/runelite/net/runelite/client/plugins/mousehighlight/MouseHighlightOverlay.d.ts +8 -9
  136. package/dist/src/types/runelite/net/runelite/client/plugins/mta/MTASceneOverlay.d.ts +3 -4
  137. package/dist/src/types/runelite/net/runelite/client/plugins/mta/alchemy/AlchemyRoom.d.ts +17 -18
  138. package/dist/src/types/runelite/net/runelite/client/plugins/mta/graveyard/GraveyardCounter.d.ts +3 -4
  139. package/dist/src/types/runelite/net/runelite/client/plugins/nightmarezone/AbsorptionCounter.d.ts +4 -5
  140. package/dist/src/types/runelite/net/runelite/client/plugins/nightmarezone/NightmareZoneConfig.d.ts +2 -2
  141. package/dist/src/types/runelite/net/runelite/client/plugins/nightmarezone/NightmareZoneOverlay.d.ts +8 -9
  142. package/dist/src/types/runelite/net/runelite/client/plugins/npchighlight/NpcIndicatorsConfig.d.ts +3 -3
  143. package/dist/src/types/runelite/net/runelite/client/plugins/npchighlight/NpcIndicatorsPlugin.d.ts +92 -90
  144. package/dist/src/types/runelite/net/runelite/client/plugins/npchighlight/NpcRespawnOverlay.d.ts +12 -8
  145. package/dist/src/types/runelite/net/runelite/client/plugins/npcunaggroarea/AggressionTimer.d.ts +4 -5
  146. package/dist/src/types/runelite/net/runelite/client/plugins/npcunaggroarea/NpcAggroAreaConfig.d.ts +2 -2
  147. package/dist/src/types/runelite/net/runelite/client/plugins/npcunaggroarea/NpcAggroAreaOverlay.d.ts +4 -5
  148. package/dist/src/types/runelite/net/runelite/client/plugins/npcunaggroarea/UncalibratedInfobox.d.ts +5 -6
  149. package/dist/src/types/runelite/net/runelite/client/plugins/objectindicators/ObjectIndicatorsConfig.d.ts +2 -2
  150. package/dist/src/types/runelite/net/runelite/client/plugins/objectindicators/ObjectIndicatorsOverlay.d.ts +14 -9
  151. package/dist/src/types/runelite/net/runelite/client/plugins/objectindicators/ObjectIndicatorsPlugin.d.ts +57 -44
  152. package/dist/src/types/runelite/net/runelite/client/plugins/opponentinfo/OpponentInfoOverlay.d.ts +18 -19
  153. package/dist/src/types/runelite/net/runelite/client/plugins/opponentinfo/PlayerComparisonOverlay.d.ts +5 -6
  154. package/dist/src/types/runelite/net/runelite/client/plugins/party/PartyConfig.d.ts +2 -2
  155. package/dist/src/types/runelite/net/runelite/client/plugins/party/PartyPingOverlay.d.ts +4 -5
  156. package/dist/src/types/runelite/net/runelite/client/plugins/party/PartyPlugin.d.ts +36 -37
  157. package/dist/src/types/runelite/net/runelite/client/plugins/party/PartyStatusOverlay.d.ts +13 -8
  158. package/dist/src/types/runelite/net/runelite/client/plugins/pestcontrol/PestControlOverlay.d.ts +11 -12
  159. package/dist/src/types/runelite/net/runelite/client/plugins/playerindicators/PlayerIndicatorsConfig.d.ts +7 -7
  160. package/dist/src/types/runelite/net/runelite/client/plugins/playerindicators/PlayerIndicatorsMinimapOverlay.d.ts +8 -5
  161. package/dist/src/types/runelite/net/runelite/client/plugins/playerindicators/PlayerIndicatorsOverlay.d.ts +9 -6
  162. package/dist/src/types/runelite/net/runelite/client/plugins/playerindicators/PlayerIndicatorsTileOverlay.d.ts +3 -4
  163. package/dist/src/types/runelite/net/runelite/client/plugins/poh/BurnerOverlay.d.ts +3 -4
  164. package/dist/src/types/runelite/net/runelite/client/plugins/poh/PohOverlay.d.ts +4 -5
  165. package/dist/src/types/runelite/net/runelite/client/plugins/poison/PoisonInfobox.d.ts +4 -5
  166. package/dist/src/types/runelite/net/runelite/client/plugins/poison/PoisonOverlay.d.ts +3 -4
  167. package/dist/src/types/runelite/net/runelite/client/plugins/prayer/PrayerBarOverlay.d.ts +7 -8
  168. package/dist/src/types/runelite/net/runelite/client/plugins/prayer/PrayerConfig.d.ts +2 -2
  169. package/dist/src/types/runelite/net/runelite/client/plugins/prayer/PrayerCounter.d.ts +5 -6
  170. package/dist/src/types/runelite/net/runelite/client/plugins/prayer/PrayerDoseOverlay.d.ts +5 -6
  171. package/dist/src/types/runelite/net/runelite/client/plugins/prayer/PrayerFlickOverlay.d.ts +3 -4
  172. package/dist/src/types/runelite/net/runelite/client/plugins/puzzlesolver/PuzzleSolverOverlay.d.ts +19 -20
  173. package/dist/src/types/runelite/net/runelite/client/plugins/pyramidplunder/PyramidPlunderConfig.d.ts +3 -3
  174. package/dist/src/types/runelite/net/runelite/client/plugins/pyramidplunder/PyramidPlunderOverlay.d.ts +4 -5
  175. package/dist/src/types/runelite/net/runelite/client/plugins/pyramidplunder/PyramidPlunderTimer.d.ts +5 -6
  176. package/dist/src/types/runelite/net/runelite/client/plugins/raids/RaidsOverlay.d.ts +5 -6
  177. package/dist/src/types/runelite/net/runelite/client/plugins/raids/RaidsTimer.d.ts +8 -9
  178. package/dist/src/types/runelite/net/runelite/client/plugins/regenmeter/RegenMeterOverlay.d.ts +5 -6
  179. package/dist/src/types/runelite/net/runelite/client/plugins/runecraft/AbyssMinimapOverlay.d.ts +4 -5
  180. package/dist/src/types/runelite/net/runelite/client/plugins/runecraft/AbyssOverlay.d.ts +4 -5
  181. package/dist/src/types/runelite/net/runelite/client/plugins/runenergy/RunEnergyOverlay.d.ts +3 -4
  182. package/dist/src/types/runelite/net/runelite/client/plugins/runepouch/RunepouchConfig.d.ts +1 -1
  183. package/dist/src/types/runelite/net/runelite/client/plugins/screenmarkers/ScreenMarkerCreationOverlay.d.ts +4 -5
  184. package/dist/src/types/runelite/net/runelite/client/plugins/screenmarkers/ScreenMarkerOverlay.d.ts +5 -6
  185. package/dist/src/types/runelite/net/runelite/client/plugins/screenmarkers/ScreenMarkerPlugin.d.ts +14 -15
  186. package/dist/src/types/runelite/net/runelite/client/plugins/screenmarkers/ScreenMarkerRenderable.d.ts +3 -4
  187. package/dist/src/types/runelite/net/runelite/client/plugins/screenmarkers/ScreenMarkerWidgetHighlightOverlay.d.ts +4 -5
  188. package/dist/src/types/runelite/net/runelite/client/plugins/screenshot/ScreenshotOverlay.d.ts +4 -5
  189. package/dist/src/types/runelite/net/runelite/client/plugins/skillcalculator/UIActionSlot.d.ts +8 -9
  190. package/dist/src/types/runelite/net/runelite/client/plugins/skybox/SkyboxPluginConfig.d.ts +2 -2
  191. package/dist/src/types/runelite/net/runelite/client/plugins/slayer/SlayerConfig.d.ts +1 -1
  192. package/dist/src/types/runelite/net/runelite/client/plugins/slayer/TargetWeaknessOverlay.d.ts +5 -6
  193. package/dist/src/types/runelite/net/runelite/client/plugins/smelting/SmeltingOverlay.d.ts +4 -5
  194. package/dist/src/types/runelite/net/runelite/client/plugins/specialcounter/PlayerInfoDropOverlay.d.ts +4 -5
  195. package/dist/src/types/runelite/net/runelite/client/plugins/specialcounter/SpecialCounter.d.ts +6 -7
  196. package/dist/src/types/runelite/net/runelite/client/plugins/specialcounter/SpecialCounterConfig.d.ts +1 -1
  197. package/dist/src/types/runelite/net/runelite/client/plugins/statusbars/StatusBarsOverlay.d.ts +8 -9
  198. package/dist/src/types/runelite/net/runelite/client/plugins/team/MembersIndicator.d.ts +3 -4
  199. package/dist/src/types/runelite/net/runelite/client/plugins/team/TeamCapesOverlay.d.ts +7 -8
  200. package/dist/src/types/runelite/net/runelite/client/plugins/tearsofguthix/TearsOfGuthixConfig.d.ts +2 -2
  201. package/dist/src/types/runelite/net/runelite/client/plugins/tearsofguthix/TearsOfGuthixOverlay.d.ts +3 -4
  202. package/dist/src/types/runelite/net/runelite/client/plugins/tileindicators/TileIndicatorsConfig.d.ts +6 -6
  203. package/dist/src/types/runelite/net/runelite/client/plugins/tileindicators/TileIndicatorsOverlay.d.ts +11 -6
  204. package/dist/src/types/runelite/net/runelite/client/plugins/timers/ElapsedTimer.d.ts +6 -7
  205. package/dist/src/types/runelite/net/runelite/client/plugins/timers/IndicatorIndicator.d.ts +4 -5
  206. package/dist/src/types/runelite/net/runelite/client/plugins/timestamp/TimestampConfig.d.ts +2 -2
  207. package/dist/src/types/runelite/net/runelite/client/plugins/timestamp/TimestampPlugin.d.ts +10 -11
  208. package/dist/src/types/runelite/net/runelite/client/plugins/timetracking/OverviewItemPanel.d.ts +4 -5
  209. package/dist/src/types/runelite/net/runelite/client/plugins/timetracking/clocks/ClockPanel.d.ts +11 -12
  210. package/dist/src/types/runelite/net/runelite/client/plugins/timetracking/clocks/TimerPanel.d.ts +4 -5
  211. package/dist/src/types/runelite/net/runelite/client/plugins/timetracking/farming/FarmingContractInfoBox.d.ts +6 -7
  212. package/dist/src/types/runelite/net/runelite/client/plugins/tithefarm/TitheFarmPlantOverlay.d.ts +7 -8
  213. package/dist/src/types/runelite/net/runelite/client/plugins/tithefarm/TitheFarmPluginConfig.d.ts +3 -3
  214. package/dist/src/types/runelite/net/runelite/client/plugins/wintertodt/WintertodtConfig.d.ts +1 -1
  215. package/dist/src/types/runelite/net/runelite/client/plugins/wintertodt/WintertodtOverlay.d.ts +3 -4
  216. package/dist/src/types/runelite/net/runelite/client/plugins/woodcutting/WoodcuttingOverlay.d.ts +3 -4
  217. package/dist/src/types/runelite/net/runelite/client/plugins/woodcutting/WoodcuttingSceneOverlay.d.ts +14 -15
  218. package/dist/src/types/runelite/net/runelite/client/plugins/worldhopper/WorldHopperPingOverlay.d.ts +3 -4
  219. package/dist/src/types/runelite/net/runelite/client/plugins/xpdrop/XpDropConfig.d.ts +4 -4
  220. package/dist/src/types/runelite/net/runelite/client/plugins/xpglobes/XpGlobesConfig.d.ts +3 -3
  221. package/dist/src/types/runelite/net/runelite/client/plugins/xpglobes/XpGlobesOverlay.d.ts +38 -14
  222. package/dist/src/types/runelite/net/runelite/client/plugins/xptracker/XpInfoBoxOverlay.d.ts +4 -5
  223. package/dist/src/types/runelite/net/runelite/client/plugins/zalcano/ZalcanoOverlay.d.ts +3 -4
  224. package/dist/src/types/runelite/net/runelite/client/plugins/zalcano/ZalcanoPanel.d.ts +6 -7
  225. package/dist/src/types/runelite/net/runelite/client/ui/ContainableFrame.d.ts +67 -45
  226. package/dist/src/types/runelite/net/runelite/client/ui/DynamicGridLayout.d.ts +18 -19
  227. package/dist/src/types/runelite/net/runelite/client/ui/PluginPanel.d.ts +6 -7
  228. package/dist/src/types/runelite/net/runelite/client/ui/components/ColorJButton.d.ts +4 -5
  229. package/dist/src/types/runelite/net/runelite/client/ui/components/DimmableJPanel.d.ts +14 -15
  230. package/dist/src/types/runelite/net/runelite/client/ui/components/FlatTextField.d.ts +19 -20
  231. package/dist/src/types/runelite/net/runelite/client/ui/components/IconTextField.d.ts +68 -45
  232. package/dist/src/types/runelite/net/runelite/client/ui/components/ThinProgressBar.d.ts +10 -11
  233. package/dist/src/types/runelite/net/runelite/client/ui/components/colorpicker/ColorPanel.d.ts +27 -28
  234. package/dist/src/types/runelite/net/runelite/client/ui/components/colorpicker/ColorPickerManager.d.ts +3 -4
  235. package/dist/src/types/runelite/net/runelite/client/ui/components/colorpicker/HuePanel.d.ts +19 -20
  236. package/dist/src/types/runelite/net/runelite/client/ui/components/colorpicker/PreviewPanel.d.ts +4 -5
  237. package/dist/src/types/runelite/net/runelite/client/ui/components/colorpicker/RecentColors.d.ts +7 -8
  238. package/dist/src/types/runelite/net/runelite/client/ui/components/colorpicker/RuneliteColorPicker.d.ts +15 -16
  239. package/dist/src/types/runelite/net/runelite/client/ui/components/shadowlabel/JShadowedLabel.d.ts +4 -5
  240. package/dist/src/types/runelite/net/runelite/client/ui/overlay/OverlayManager.d.ts +1 -1
  241. package/dist/src/types/runelite/net/runelite/client/ui/overlay/OverlayPanel.d.ts +4 -6
  242. package/dist/src/types/runelite/net/runelite/client/ui/overlay/OverlayUtil.d.ts +16 -36
  243. package/dist/src/types/runelite/net/runelite/client/ui/overlay/RenderableEntity.d.ts +1 -1
  244. package/dist/src/types/runelite/net/runelite/client/ui/overlay/WidgetItemOverlay.d.ts +2 -6
  245. package/dist/src/types/runelite/net/runelite/client/ui/overlay/WidgetOverlay.d.ts +3 -10
  246. package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/BackgroundComponent.d.ts +2 -6
  247. package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/ComponentConstants.d.ts +1 -1
  248. package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/ImageComponent.d.ts +2 -2
  249. package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/LayoutableRenderableEntity.d.ts +1 -1
  250. package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/LineComponent.d.ts +8 -10
  251. package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/PanelComponent.d.ts +15 -15
  252. package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/ProgressBarComponent.d.ts +6 -8
  253. package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/ProgressPieComponent.d.ts +10 -8
  254. package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/SplitComponent.d.ts +3 -5
  255. package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/TextComponent.d.ts +2 -2
  256. package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/TitleComponent.d.ts +6 -10
  257. package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/TooltipComponent.d.ts +3 -3
  258. package/dist/src/types/runelite/net/runelite/client/ui/overlay/infobox/Counter.d.ts +4 -5
  259. package/dist/src/types/runelite/net/runelite/client/ui/overlay/infobox/InfoBox.d.ts +7 -8
  260. package/dist/src/types/runelite/net/runelite/client/ui/overlay/infobox/InfoBoxOverlay.d.ts +9 -10
  261. package/dist/src/types/runelite/net/runelite/client/ui/overlay/infobox/LoopTimer.d.ts +5 -6
  262. package/dist/src/types/runelite/net/runelite/client/ui/overlay/infobox/Timer.d.ts +16 -17
  263. package/dist/src/types/runelite/net/runelite/client/ui/overlay/outline/ModelOutlineRenderer.d.ts +192 -159
  264. package/dist/src/types/runelite/net/runelite/client/ui/overlay/tooltip/TooltipOverlay.d.ts +6 -7
  265. package/dist/src/types/runelite/net/runelite/client/ui/overlay/worldmap/WorldMapOverlay.d.ts +24 -25
  266. package/dist/src/types/runelite/net/runelite/client/util/ColorUtil.d.ts +104 -105
  267. package/dist/src/types/runelite/net/runelite/client/util/ImageUtil.d.ts +187 -183
  268. package/dist/src/types/runelite/net/runelite/http/api/item/index.d.ts +232 -0
  269. package/dist/src/types/sox/api/api.d.ts +64 -40
  270. package/dist/src/types/sox/api/bot.d.ts +117 -0
  271. package/dist/src/types/sox/index.d.ts +7 -1
  272. package/package.json +8 -7
  273. package/dist/src/types/java/Collection.d.ts +0 -24
  274. package/dist/src/types/java/Dimension.d.ts +0 -1
  275. package/dist/src/types/java/Graphics2D.d.ts +0 -65
  276. package/dist/src/types/java/List.d.ts +0 -40
  277. package/dist/src/types/java/Thread.d.ts +0 -1
  278. package/dist/src/types/java/lang/Thread.d.ts +0 -8
  279. package/dist/src/types/java/util/HashSet.d.ts +0 -19
  280. package/dist/src/types/java/util/LinkedList.d.ts +0 -16
  281. package/dist/src/types/java/util/Set.d.ts +0 -11
  282. package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/PanelComponents.d.ts +0 -22
  283. package/dist/src/types/runelite/net/runelite/client/ui/overlay/components/ProgressPieComponents.d.ts +0 -13
  284. package/dist/src/types/runelite/target/generated-sources/net/runelite/api/widgets/ComponentID.d.ts +0 -1305
  285. package/dist/src/types/runelite/target/generated-sources/net/runelite/api/widgets/InterfaceID.d.ts +0 -6
@@ -1979,7 +1979,7 @@ declare namespace net.runelite.api {
1979
1979
  static readonly WARRIOR_WOMAN = 3245;
1980
1980
  static readonly ROGUE = 3247;
1981
1981
  static readonly GUARD = 3249;
1982
- static readonly KNIGHT_OF_ARDOUGNE = 3251;
1982
+ static readonly KNIGHT = 3251;
1983
1983
  static readonly WATCHMAN = 3253;
1984
1984
  static readonly PALADIN = 3255;
1985
1985
  static readonly GNOME = 3257;
@@ -9595,7 +9595,7 @@ declare namespace net.runelite.api {
9595
9595
  static readonly INVITATION_LIST = 21208;
9596
9596
  static readonly BIRTHDAY_BALLOONS = 21209;
9597
9597
  static readonly _4TH_BIRTHDAY_HAT = 21211;
9598
- static readonly SERVANTS_MONEYBAG = 21213;
9598
+ static readonly SERVANTS_MONEY_BAG = 21213;
9599
9599
  static readonly EASTER_EGG_HELM = 21214;
9600
9600
  static readonly FRUITY_EASTER_EGG = 21216;
9601
9601
  static readonly FRESH_EASTER_EGG = 21217;
@@ -12184,20 +12184,20 @@ declare namespace net.runelite.api {
12184
12184
  static readonly COMBAT_POTION2_26152 = 26152;
12185
12185
  static readonly COMBAT_POTION1_26153 = 26153;
12186
12186
  static readonly MOUNT_KARUULM_DIARY = 26154;
12187
- static readonly GROUP_IRON_HELM = 26156;
12188
- static readonly GROUP_IRON_PLATEBODY = 26158;
12189
- static readonly GROUP_IRON_PLATEBODY_26160 = 26160;
12190
- static readonly GROUP_IRON_PLATEBODY_26162 = 26162;
12191
- static readonly GROUP_IRON_PLATEBODY_26164 = 26164;
12192
- static readonly GROUP_IRON_PLATELEGS = 26166;
12193
- static readonly GROUP_IRON_BRACERS = 26168;
12194
- static readonly HARDCORE_GROUP_IRON_HELM = 26170;
12195
- static readonly HARDCORE_GROUP_IRON_PLATEBODY = 26172;
12196
- static readonly HARDCORE_GROUP_IRON_PLATEBODY_26174 = 26174;
12197
- static readonly HARDCORE_GROUP_IRON_PLATEBODY_26176 = 26176;
12198
- static readonly HARDCORE_GROUP_IRON_PLATEBODY_26178 = 26178;
12199
- static readonly HARDCORE_GROUP_IRON_PLATELEGS = 26180;
12200
- static readonly HARDCORE_GROUP_IRON_BRACERS = 26182;
12187
+ static readonly GROUP_IRONMAN_HELM = 26156;
12188
+ static readonly GROUP_IRONMAN_PLATEBODY = 26158;
12189
+ static readonly GROUP_IRONMAN_PLATEBODY_26160 = 26160;
12190
+ static readonly GROUP_IRONMAN_PLATEBODY_26162 = 26162;
12191
+ static readonly GROUP_IRONMAN_PLATEBODY_26164 = 26164;
12192
+ static readonly GROUP_IRONMAN_PLATELEGS = 26166;
12193
+ static readonly GROUP_IRONMAN_BRACERS = 26168;
12194
+ static readonly HARDCORE_GROUP_IRONMAN_HELM = 26170;
12195
+ static readonly HARDCORE_GROUP_IRONMAN_PLATEBODY = 26172;
12196
+ static readonly HARDCORE_GROUP_IRONMAN_PLATEBODY_26174 = 26174;
12197
+ static readonly HARDCORE_GROUP_IRONMAN_PLATEBODY_26176 = 26176;
12198
+ static readonly HARDCORE_GROUP_IRONMAN_PLATEBODY_26178 = 26178;
12199
+ static readonly HARDCORE_GROUP_IRONMAN_PLATELEGS = 26180;
12200
+ static readonly HARDCORE_GROUP_IRONMAN_BRACERS = 26182;
12201
12201
  static readonly BLUE_ICON_26184 = 26184;
12202
12202
  static readonly BLUE_ICON_26185 = 26185;
12203
12203
  static readonly BLUE_ICON_26186 = 26186;
@@ -12717,13 +12717,13 @@ declare namespace net.runelite.api {
12717
12717
  static readonly BEAUTIFUL_YELLOW_PANSY_SEED = 27039;
12718
12718
  static readonly TENACIOUS_INDIGO_IRIS_SEED = 27040;
12719
12719
  static readonly QUALITY_VIOLET_TULIP_SEED = 27041;
12720
- static readonly GROUP_IRON_HELM_UNRANKED = 27042;
12721
- static readonly GROUP_IRON_PLATELEGS_UNRANKED = 27044;
12722
- static readonly GROUP_IRON_BRACERS_UNRANKED = 27046;
12723
- static readonly GROUP_IRON_PLATEBODY_UNRANKED = 27048;
12724
- static readonly GROUP_IRON_PLATEBODY_UNRANKED_27050 = 27050;
12725
- static readonly GROUP_IRON_PLATEBODY_UNRANKED_27052 = 27052;
12726
- static readonly GROUP_IRON_PLATEBODY_UNRANKED_27054 = 27054;
12720
+ static readonly GROUP_IRONMAN_HELM_UNRANKED = 27042;
12721
+ static readonly GROUP_IRONMAN_PLATELEGS_UNRANKED = 27044;
12722
+ static readonly GROUP_IRONMAN_BRACERS_UNRANKED = 27046;
12723
+ static readonly GROUP_IRONMAN_PLATEBODY_UNRANKED = 27048;
12724
+ static readonly GROUP_IRONMAN_PLATEBODY_UNRANKED_27050 = 27050;
12725
+ static readonly GROUP_IRONMAN_PLATEBODY_UNRANKED_27052 = 27052;
12726
+ static readonly GROUP_IRONMAN_PLATEBODY_UNRANKED_27054 = 27054;
12727
12727
  static readonly RUNE_POUCH_27086 = 27086;
12728
12728
  static readonly ELDER_MAUL_ORNAMENT_KIT = 27098;
12729
12729
  static readonly ELDER_MAUL_OR = 27100;
@@ -13680,5 +13680,337 @@ declare namespace net.runelite.api {
13680
13680
  static readonly SLATE_TABLET = 28818;
13681
13681
  static readonly SHALE_TABLET = 28819;
13682
13682
  static readonly ANTIQUE_LAMP_28820 = 28820;
13683
+ static readonly WEALTHY_CITIZEN = 28821;
13684
+ static readonly COIN_POUCH_28822 = 28822;
13685
+ static readonly LESSER_NAGUA = 28823;
13686
+ static readonly CIVITAS_ILLA_FORTIS_TELEPORT = 28824;
13687
+ static readonly DIZANAS_QUIVER_BROKEN = 28826;
13688
+ static readonly BLESSED_DIZANAS_QUIVER_BROKEN = 28828;
13689
+ static readonly DIZANAS_MAX_CAPE_BROKEN = 28830;
13690
+ static readonly IMMATURE_TECU_SALAMANDER = 28831;
13691
+ static readonly TECU_SALAMANDER = 28834;
13692
+ static readonly IRIT_TAR = 28837;
13693
+ static readonly WOOD_CAMO_TOP_28839 = 28839;
13694
+ static readonly WOOD_CAMO_LEGS_28842 = 28842;
13695
+ static readonly JUNGLE_CAMO_TOP_28845 = 28845;
13696
+ static readonly JUNGLE_CAMO_LEGS_28848 = 28848;
13697
+ static readonly DESERT_CAMO_TOP_28851 = 28851;
13698
+ static readonly DESERT_CAMO_LEGS_28854 = 28854;
13699
+ static readonly POLAR_CAMO_TOP_28857 = 28857;
13700
+ static readonly POLAR_CAMO_LEGS_28860 = 28860;
13701
+ static readonly SUNLIGHT_MOTH = 28863;
13702
+ static readonly MOONLIGHT_MOTH = 28864;
13703
+ static readonly PYRE_FOX = 28865;
13704
+ static readonly EMBERTAILED_JERBOA = 28866;
13705
+ static readonly SUNLIGHT_ANTELOPE = 28867;
13706
+ static readonly MOONLIGHT_ANTELOPE = 28868;
13707
+ static readonly HUNTERS_SUNLIGHT_CROSSBOW = 28869;
13708
+ static readonly SUNLIGHT_ANTLER_BOLTS = 28872;
13709
+ static readonly MOONLIGHT_ANTLER_BOLTS = 28878;
13710
+ static readonly SUNLIGHT_ANTLER = 28884;
13711
+ static readonly MOONLIGHT_ANTLER = 28887;
13712
+ static readonly SUNLIGHT_MOTH_28890 = 28890;
13713
+ static readonly MOONLIGHT_MOTH_28893 = 28893;
13714
+ static readonly RUM_28896 = 28896;
13715
+ static readonly WYRMLING_BONES = 28899;
13716
+ static readonly DIZANAS_MAX_CAPE = 28902;
13717
+ static readonly DIZANAS_MAX_HOOD = 28904;
13718
+ static readonly DIZANAS_MAX_CAPE_L = 28906;
13719
+ static readonly CLUE_SCROLL_MEDIUM_28907 = 28907;
13720
+ static readonly CLUE_SCROLL_MEDIUM_28908 = 28908;
13721
+ static readonly CLUE_SCROLL_MEDIUM_28909 = 28909;
13722
+ static readonly CLUE_SCROLL_ELITE_28910 = 28910;
13723
+ static readonly CLUE_SCROLL_ELITE_28911 = 28911;
13724
+ static readonly CLUE_SCROLL_ELITE_28912 = 28912;
13725
+ static readonly CLUE_SCROLL_EASY_28913 = 28913;
13726
+ static readonly CLUE_SCROLL_EASY_28914 = 28914;
13727
+ static readonly CLUE_SCROLL_HARD_28915 = 28915;
13728
+ static readonly CLUE_SCROLL_HARD_28916 = 28916;
13729
+ static readonly PUZZLE_BOX_HARD_28917 = 28917;
13730
+ static readonly CLUE_SCROLL_HARD_28918 = 28918;
13731
+ static readonly TONALZTICS_OF_RALOS_UNCHARGED = 28919;
13732
+ static readonly TONALZTICS_OF_RALOS = 28922;
13733
+ static readonly SUNFIRE_SPLINTERS = 28924;
13734
+ static readonly SUNFIRE_RUNE = 28929;
13735
+ static readonly SEARING_PAGE = 28931;
13736
+ static readonly SUNFIRE_FANATIC_HELM = 28933;
13737
+ static readonly SUNFIRE_FANATIC_CUIRASS = 28936;
13738
+ static readonly SUNFIRE_FANATIC_CHAUSSES = 28939;
13739
+ static readonly ECHO_CRYSTAL = 28942;
13740
+ static readonly ECHO_BOOTS = 28945;
13741
+ static readonly DIZANAS_QUIVER_UNCHARGED = 28947;
13742
+ static readonly DIZANAS_QUIVER_UNCHARGED_L = 28949;
13743
+ static readonly DIZANAS_QUIVER = 28951;
13744
+ static readonly DIZANAS_QUIVER_L = 28953;
13745
+ static readonly BLESSED_DIZANAS_QUIVER = 28955;
13746
+ static readonly BLESSED_DIZANAS_QUIVER_L = 28957;
13747
+ static readonly SCRAWLED_POEM = 28958;
13748
+ static readonly SMOL_HEREDIT = 28960;
13749
+ static readonly QUETZIN = 28962;
13750
+ static readonly ENCHANTED_WATER_TALISMAN = 28964;
13751
+ static readonly ENCHANTED_EARTH_TALISMAN = 28965;
13752
+ static readonly INFUSED_WATER_TALISMAN = 28966;
13753
+ static readonly INFUSED_EARTH_TALISMAN = 28967;
13754
+ static readonly BUILDING_SUPPLIES = 28968;
13755
+ static readonly MOSS_LIZARD_TAIL = 28969;
13756
+ static readonly BREAM_SCALES = 28970;
13757
+ static readonly VARLAMORE_INVITATION = 28972;
13758
+ static readonly VARLAMORE_CREST = 28973;
13759
+ static readonly INCRIMINATING_LETTER = 28974;
13760
+ static readonly QUETZAL_FEED = 28975;
13761
+ static readonly STOLEN_AMULET = 28976;
13762
+ static readonly KNIGHT_OF_VARLAMORE = 28977;
13763
+ static readonly SMOOTH_LEAF = 28978;
13764
+ static readonly STICKY_LEAF = 28979;
13765
+ static readonly MAKESHIFT_POULTICE = 28980;
13766
+ static readonly FUR_SAMPLE = 28981;
13767
+ static readonly TRIMMED_FUR = 28982;
13768
+ static readonly FOXS_REPORT = 28983;
13769
+ static readonly BABY_DRAGON_BONEMEAL_28984 = 28984;
13770
+ static readonly LOVE_LETTER = 28986;
13771
+ static readonly PLUSHY = 28987;
13772
+ static readonly BLUE_MOON_SPEAR = 28988;
13773
+ static readonly ATLATL_DART = 28991;
13774
+ static readonly DUAL_MACUAHUITL = 28997;
13775
+ static readonly ECLIPSE_ATLATL = 29000;
13776
+ static readonly ECLIPSE_MOON_CHESTPLATE = 29004;
13777
+ static readonly ECLIPSE_MOON_TASSETS = 29007;
13778
+ static readonly ECLIPSE_MOON_HELM = 29010;
13779
+ static readonly BLUE_MOON_CHESTPLATE = 29013;
13780
+ static readonly BLUE_MOON_TASSETS = 29016;
13781
+ static readonly BLUE_MOON_HELM = 29019;
13782
+ static readonly BLOOD_MOON_CHESTPLATE = 29022;
13783
+ static readonly BLOOD_MOON_TASSETS = 29025;
13784
+ static readonly BLOOD_MOON_HELM = 29028;
13785
+ static readonly ECLIPSE_MOON_CHESTPLATE_29031 = 29031;
13786
+ static readonly ECLIPSE_MOON_TASSETS_29033 = 29033;
13787
+ static readonly ECLIPSE_MOON_HELM_29035 = 29035;
13788
+ static readonly BLUE_MOON_CHESTPLATE_29037 = 29037;
13789
+ static readonly BLUE_MOON_TASSETS_29039 = 29039;
13790
+ static readonly BLUE_MOON_HELM_29041 = 29041;
13791
+ static readonly BLOOD_MOON_CHESTPLATE_29043 = 29043;
13792
+ static readonly BLOOD_MOON_TASSETS_29045 = 29045;
13793
+ static readonly BLOOD_MOON_HELM_29047 = 29047;
13794
+ static readonly ECLIPSE_MOON_CHESTPLATE_BROKEN = 29049;
13795
+ static readonly ECLIPSE_MOON_TASSETS_BROKEN = 29052;
13796
+ static readonly ECLIPSE_MOON_HELM_BROKEN = 29055;
13797
+ static readonly BLUE_MOON_CHESTPLATE_BROKEN = 29058;
13798
+ static readonly BLUE_MOON_TASSETS_BROKEN = 29061;
13799
+ static readonly BLUE_MOON_HELM_BROKEN = 29064;
13800
+ static readonly BLOOD_MOON_CHESTPLATE_BROKEN = 29067;
13801
+ static readonly BLOOD_MOON_TASSETS_BROKEN = 29070;
13802
+ static readonly BLOOD_MOON_HELM_BROKEN = 29073;
13803
+ static readonly RAW_MOSS_LIZARD = 29076;
13804
+ static readonly COOKED_MOSS_LIZARD = 29077;
13805
+ static readonly MOONLIGHT_GRUB = 29078;
13806
+ static readonly MOONLIGHT_GRUB_PASTE = 29079;
13807
+ static readonly MOONLIGHT_POTION4 = 29080;
13808
+ static readonly MOONLIGHT_POTION3 = 29081;
13809
+ static readonly MOONLIGHT_POTION2 = 29082;
13810
+ static readonly MOONLIGHT_POTION1 = 29083;
13811
+ static readonly SULPHUR_BLADES = 29084;
13812
+ static readonly SULPHUROUS_ESSENCE = 29087;
13813
+ static readonly CALCIFIED_DEPOSIT = 29088;
13814
+ static readonly CALCIFIED_MOTH = 29090;
13815
+ static readonly NOT_MEAT = 29098;
13816
+ static readonly RAW_BARBTAILED_KEBBIT = 29101;
13817
+ static readonly RAW_WILD_KEBBIT = 29104;
13818
+ static readonly RAW_DASHING_KEBBIT = 29107;
13819
+ static readonly RAW_PYRE_FOX = 29110;
13820
+ static readonly RAW_MOONLIGHT_ANTELOPE = 29113;
13821
+ static readonly RAW_SUNLIGHT_ANTELOPE = 29116;
13822
+ static readonly RAW_GRAAHK = 29119;
13823
+ static readonly RAW_LARUPIA = 29122;
13824
+ static readonly RAW_KYATT = 29125;
13825
+ static readonly COOKED_WILD_KEBBIT = 29128;
13826
+ static readonly COOKED_BARBTAILED_KEBBIT = 29131;
13827
+ static readonly COOKED_DASHING_KEBBIT = 29134;
13828
+ static readonly COOKED_PYRE_FOX = 29137;
13829
+ static readonly COOKED_SUNLIGHT_ANTELOPE = 29140;
13830
+ static readonly COOKED_MOONLIGHT_ANTELOPE = 29143;
13831
+ static readonly COOKED_LARUPIA = 29146;
13832
+ static readonly COOKED_GRAAHK = 29149;
13833
+ static readonly COOKED_KYATT = 29152;
13834
+ static readonly BURNT_KEBBIT = 29155;
13835
+ static readonly BURNT_LARGE_BEAST = 29157;
13836
+ static readonly BURNT_ANTELOPE = 29159;
13837
+ static readonly BURNT_FOX_MEAT = 29161;
13838
+ static readonly FOX_FUR = 29163;
13839
+ static readonly JERBOA_TAIL = 29166;
13840
+ static readonly SUNLIGHT_ANTELOPE_ANTLER = 29168;
13841
+ static readonly MOONLIGHT_ANTELOPE_ANTLER = 29171;
13842
+ static readonly MOONLIGHT_ANTELOPE_FUR = 29174;
13843
+ static readonly SUNLIGHT_ANTELOPE_FUR = 29177;
13844
+ static readonly SAPPHIRE_GLACIALIS_MIX_2 = 29180;
13845
+ static readonly SNOWY_KNIGHT_MIX_2 = 29183;
13846
+ static readonly RUBY_HARVEST_MIX_2 = 29186;
13847
+ static readonly BLACK_WARLOCK_MIX_2 = 29189;
13848
+ static readonly SUNLIGHT_MOTH_MIX_2 = 29192;
13849
+ static readonly MOONLIGHT_MOTH_MIX_2 = 29195;
13850
+ static readonly SAPPHIRE_GLACIALIS_MIX_1 = 29198;
13851
+ static readonly SNOWY_KNIGHT_MIX_1 = 29201;
13852
+ static readonly RUBY_HARVEST_MIX_1 = 29204;
13853
+ static readonly BLACK_WARLOCK_MIX_1 = 29207;
13854
+ static readonly SUNLIGHT_MOTH_MIX_1 = 29210;
13855
+ static readonly MOONLIGHT_MOTH_MIX_1 = 29213;
13856
+ static readonly RAW_BREAM = 29216;
13857
+ static readonly COOKED_BREAM = 29217;
13858
+ static readonly JAGUAR_FUR = 29218;
13859
+ static readonly CHINCHOMPA_TUFT = 29221;
13860
+ static readonly TAILFEATHERS = 29222;
13861
+ static readonly KEBBITY_TUFT = 29223;
13862
+ static readonly BLUE_BUTTERFLY_WING = 29224;
13863
+ static readonly SWAMP_LIZARD_CLAW = 29225;
13864
+ static readonly LARUPIA_EAR = 29226;
13865
+ static readonly WHITE_BUTTERFLY_WING = 29227;
13866
+ static readonly LARGE_JERBOA_TAIL = 29228;
13867
+ static readonly GRAAHK_HORN_SPUR = 29229;
13868
+ static readonly BLACK_BUTTERFLY_WING = 29230;
13869
+ static readonly ORANGE_SALAMANDER_CLAW = 29231;
13870
+ static readonly KYATT_TOOTH_CHIP = 29232;
13871
+ static readonly FOX_FLUFF = 29233;
13872
+ static readonly RED_SALAMANDER_CLAW = 29234;
13873
+ static readonly RED_CHINCHOMPA_TUFT = 29235;
13874
+ static readonly ANTELOPE_HOOF_SHARD = 29236;
13875
+ static readonly SUNLIGHT_MOTH_WING = 29237;
13876
+ static readonly SALAMANDER_CLAW = 29238;
13877
+ static readonly HERBY_TUFT = 29239;
13878
+ static readonly MOONLIGHT_MOTH_WING = 29240;
13879
+ static readonly ANTELOPE_HOOF_SHARD_29241 = 29241;
13880
+ static readonly HUNTERS_LOOT_SACK_BASIC = 29242;
13881
+ static readonly HUNTERS_LOOT_SACK_ADEPT = 29244;
13882
+ static readonly HUNTERS_LOOT_SACK_EXPERT = 29246;
13883
+ static readonly HUNTERS_LOOT_SACK_MASTER = 29248;
13884
+ static readonly HUNTERS_LOOT_SACK = 29250;
13885
+ static readonly BASIC_QUETZAL_WHISTLE_BLUEPRINT = 29251;
13886
+ static readonly ENHANCED_QUETZAL_WHISTLE_BLUEPRINT = 29253;
13887
+ static readonly PERFECTED_QUETZAL_WHISTLE_BLUEPRINT = 29256;
13888
+ static readonly TORN_ENHANCED_QUETZAL_WHISTLE_BLUEPRINT = 29259;
13889
+ static readonly TORN_PERFECTED_QUETZAL_WHISTLE_BLUEPRINT = 29261;
13890
+ static readonly GUILD_HUNTER_HEADWEAR = 29263;
13891
+ static readonly GUILD_HUNTER_TOP = 29265;
13892
+ static readonly GUILD_HUNTER_LEGS = 29267;
13893
+ static readonly GUILD_HUNTER_BOOTS = 29269;
13894
+ static readonly BASIC_QUETZAL_WHISTLE = 29271;
13895
+ static readonly ENHANCED_QUETZAL_WHISTLE = 29273;
13896
+ static readonly PERFECTED_QUETZAL_WHISTLE = 29275;
13897
+ static readonly TRAPPERS_TIPPLE = 29277;
13898
+ static readonly MIXED_HIDE_TOP = 29280;
13899
+ static readonly MIXED_HIDE_LEGS = 29283;
13900
+ static readonly MIXED_HIDE_BOOTS = 29286;
13901
+ static readonly MIXED_HIDE_CAPE = 29289;
13902
+ static readonly MIXED_HIDE_BASE = 29292;
13903
+ static readonly SMALL_MEAT_POUCH = 29295;
13904
+ static readonly LARGE_MEAT_POUCH = 29297;
13905
+ static readonly SMALL_FUR_POUCH = 29299;
13906
+ static readonly MEDIUM_FUR_POUCH = 29301;
13907
+ static readonly LARGE_FUR_POUCH = 29303;
13908
+ static readonly HUNTERS_SPEAR = 29305;
13909
+ static readonly QUETZAL_FEED_29307 = 29307;
13910
+ static readonly HUNTSMANS_KIT = 29309;
13911
+ static readonly HUNTER_SPEAR_TIPS = 29311;
13912
+ static readonly TATTERED_REQUEST_NOTE = 29317;
13913
+ static readonly GUILD_HISTORY_EXCERPT = 29319;
13914
+ static readonly APATURAS_NOTE = 29321;
13915
+ static readonly APATURAS_KEY = 29323;
13916
+ static readonly HOUSE_KEYS = 29325;
13917
+ static readonly VALUABLES = 29332;
13918
+ static readonly BLESSED_BONE_STATUETTE = 29338;
13919
+ static readonly BLESSED_BONE_STATUETTE_29340 = 29340;
13920
+ static readonly BLESSED_BONE_STATUETTE_29342 = 29342;
13921
+ static readonly BLESSED_BONES = 29344;
13922
+ static readonly BLESSED_BAT_BONES = 29346;
13923
+ static readonly BLESSED_BIG_BONES = 29348;
13924
+ static readonly BLESSED_ZOGRE_BONES = 29350;
13925
+ static readonly BLESSED_BABYDRAGON_BONES = 29352;
13926
+ static readonly BLESSED_BABYWYRM_BONES = 29354;
13927
+ static readonly BLESSED_DRAGON_BONES = 29356;
13928
+ static readonly BLESSED_LAVA_DRAGON_BONES = 29358;
13929
+ static readonly BLESSED_WYVERN_BONES = 29360;
13930
+ static readonly BLESSED_SUPERIOR_DRAGON_BONES = 29362;
13931
+ static readonly BLESSED_WYRM_BONES = 29364;
13932
+ static readonly BLESSED_DRAKE_BONES = 29366;
13933
+ static readonly BLESSED_HYDRA_BONES = 29368;
13934
+ static readonly BLESSED_FAYRG_BONES = 29370;
13935
+ static readonly BLESSED_RAURG_BONES = 29372;
13936
+ static readonly BLESSED_OURG_BONES = 29374;
13937
+ static readonly DAGANNOTH_BONES_29376 = 29376;
13938
+ static readonly SUNKISSED_BONES = 29378;
13939
+ static readonly BLESSED_BONE_SHARDS = 29381;
13940
+ static readonly JUG_OF_SUNFIRE_WINE = 29382;
13941
+ static readonly JUG_OF_BLESSED_SUNFIRE_WINE = 29384;
13942
+ static readonly JUG_OF_BLESSED_WINE = 29386;
13943
+ static readonly TOKEN = 29388;
13944
+ static readonly TOKEN_29389 = 29389;
13945
+ static readonly TOKEN_29390 = 29390;
13946
+ static readonly TOKEN_29391 = 29391;
13947
+ static readonly TOKEN_29392 = 29392;
13948
+ static readonly TOKEN_29393 = 29393;
13949
+ static readonly TOKEN_29394 = 29394;
13950
+ static readonly TOKEN_29395 = 29395;
13951
+ static readonly TOKEN_29396 = 29396;
13952
+ static readonly TOKEN_29397 = 29397;
13953
+ static readonly TOKEN_29398 = 29398;
13954
+ static readonly TOKEN_29399 = 29399;
13955
+ static readonly TOKEN_29400 = 29400;
13956
+ static readonly TOKEN_29401 = 29401;
13957
+ static readonly TOKEN_29402 = 29402;
13958
+ static readonly TOKEN_29403 = 29403;
13959
+ static readonly TOKEN_29404 = 29404;
13960
+ static readonly TOKEN_29405 = 29405;
13961
+ static readonly TOKEN_29406 = 29406;
13962
+ static readonly TOKEN_29407 = 29407;
13963
+ static readonly A_NICE_KEY = 29408;
13964
+ static readonly SUNBEAM_ALE = 29409;
13965
+ static readonly STEAMFORGE_BREW = 29412;
13966
+ static readonly ECLIPSE_WINE = 29415;
13967
+ static readonly MOONLITE = 29418;
13968
+ static readonly SUNSHINE = 29421;
13969
+ static readonly SUNFIRE_FANATIC_ARMOUR_SET = 29424;
13970
+ static readonly HERBALISTS_NOTES = 29427;
13971
+ static readonly CHEFS_NOTES = 29428;
13972
+ static readonly BOOK_OF_EGG = 29433;
13973
+ static readonly BOOK_OF_EGG_29435 = 29435;
13974
+ static readonly EGG_PRIEST_ROBE = 29437;
13975
+ static readonly EGG_PRIEST_ROBE_TOP = 29439;
13976
+ static readonly EGG_PRIEST_NECKLACE = 29441;
13977
+ static readonly EGG_PRIEST_MITRE = 29443;
13978
+ static readonly IMBUED_MAGE_ARENA_CAPE = 29448;
13979
+ static readonly ZOMBIE_PIRATE_KEY = 29449;
13980
+ static readonly TELEPORT_ANCHORING_SCROLL = 29455;
13981
+ static readonly ADAMANT_SEEDS = 29458;
13982
+ static readonly WILDERNESS_AGILITY_TICKET = 29460;
13983
+ static readonly SMALL_MEAT_POUCH_OPEN = 29462;
13984
+ static readonly LARGE_MEAT_POUCH_OPEN = 29464;
13985
+ static readonly SMALL_FUR_POUCH_OPEN = 29466;
13986
+ static readonly MEDIUM_FUR_POUCH_OPEN = 29468;
13987
+ static readonly LARGE_FUR_POUCH_OPEN = 29470;
13988
+ static readonly PROSPECTOR_HELMET_29472 = 29472;
13989
+ static readonly PROSPECTOR_JACKET_29474 = 29474;
13990
+ static readonly PROSPECTOR_LEGS_29476 = 29476;
13991
+ static readonly PROSPECTOR_BOOTS_29478 = 29478;
13992
+ static readonly AGILITY_ARENA_TICKET_29480 = 29480;
13993
+ static readonly BRIMHAVEN_VOUCHER = 29482;
13994
+ static readonly AGILITY_XP = 29484;
13995
+ static readonly GRACEFUL_RECOLOUR = 29485;
13996
+ static readonly CURSED_AMULET_OF_MAGIC = 29486;
13997
+ static readonly RAINBOW_CAPE = 29489;
13998
+ static readonly COLOURFUL_CAPE = 29491;
13999
+ static readonly COLOURFUL_CAPE_29493 = 29493;
14000
+ static readonly COLOURFUL_CAPE_29495 = 29495;
14001
+ static readonly COLOURFUL_CAPE_29497 = 29497;
14002
+ static readonly COLOURFUL_CAPE_29499 = 29499;
14003
+ static readonly COLOURFUL_CAPE_29501 = 29501;
14004
+ static readonly COLOURFUL_CAPE_29503 = 29503;
14005
+ static readonly COLOURFUL_CAPE_29505 = 29505;
14006
+ static readonly RAINBOW_CROWN_SHIRT = 29507;
14007
+ static readonly COLOURFUL_CROWN_SHIRT = 29509;
14008
+ static readonly COLOURFUL_CROWN_SHIRT_29510 = 29510;
14009
+ static readonly COLOURFUL_CROWN_SHIRT_29511 = 29511;
14010
+ static readonly COLOURFUL_CROWN_SHIRT_29512 = 29512;
14011
+ static readonly COLOURFUL_CROWN_SHIRT_29513 = 29513;
14012
+ static readonly COLOURFUL_CROWN_SHIRT_29514 = 29514;
14013
+ static readonly COLOURFUL_CROWN_SHIRT_29515 = 29515;
14014
+ static readonly COLOURFUL_CROWN_SHIRT_29516 = 29516;
13683
14015
  }
13684
14016
  }
@@ -85,6 +85,6 @@ declare namespace net.runelite.api {
85
85
  * from the item composition. Only works if the kittype is an item.
86
86
  * @return
87
87
  */
88
- getColorTextureOverrides(): ColorTextureOverride[] | null;
88
+ getColorTextureOverrides(): java.awt.ColorTextureOverride[] | null;
89
89
  }
90
90
  }
@@ -120,7 +120,7 @@ declare namespace net.runelite.api {
120
120
  *
121
121
  * @param color target color
122
122
  */
123
- toBufferedOutline(color: Color): BufferedImage;
123
+ toBufferedOutline(color: java.awt.Color): BufferedImage;
124
124
  /**
125
125
  * Writes the contents of the SpritePixels with chosen outline to the BufferedImage
126
126
  *
@@ -152,13 +152,13 @@ declare namespace net.runelite.api {
152
152
  *
153
153
  * @return all projectiles
154
154
  */
155
- getProjectiles(): Deque<Projectile>;
155
+ getProjectiles(): net.runelite.api.Deque<Projectile>;
156
156
  /**
157
157
  * Gets a list of all graphics objects currently drawn.
158
158
  *
159
159
  * @return all graphics objects
160
160
  */
161
- getGraphicsObjects(): Deque<GraphicsObject>;
161
+ getGraphicsObjects(): net.runelite.api.Deque<GraphicsObject>;
162
162
  /**
163
163
  * Gets the currently selected tile. (ie. last right clicked tile)
164
164
  *
@@ -29,29 +29,36 @@ declare namespace net.runelite.api.coords {
29
29
  * Represents an area on the world.
30
30
  */
31
31
  export class WorldArea {
32
- constructor(
33
- x: number,
34
- y: number,
35
- width: number,
36
- height: number,
37
- plane: number,
38
- );
39
- constructor(location: WorldPoint, width: number, height: number);
40
32
  /**
41
33
  * The western most point of the area.
42
34
  */
35
+ getX(): number;
43
36
  /**
44
37
  * The southern most point of the area.
45
38
  */
39
+ getY(): number;
46
40
  /**
47
41
  * The width of the area.
48
42
  */
43
+ getWidth(): number;
49
44
  /**
50
45
  * The height of the area.
51
46
  */
47
+ getHeight(): number;
52
48
  /**
53
49
  * The plane the area is on.
54
50
  */
51
+ getPlane(): number;
52
+
53
+ constructor(
54
+ x: number,
55
+ y: number,
56
+ width: number,
57
+ height: number,
58
+ plane: number,
59
+ );
60
+ constructor(location: WorldPoint, width: number, height: number);
61
+
55
62
  /**
56
63
  * Computes the shortest distance to another area.
57
64
  *
@@ -163,20 +170,7 @@ declare namespace net.runelite.api.coords {
163
170
  dy: number,
164
171
  extraCondition: any,
165
172
  ): boolean;
166
- // Check that the area doesn't bypass a wall
167
- // Collision while attempting to travel along the x axis
168
- // Check that the new area tiles don't contain a wall
169
- // The new area tiles contains a wall
170
- // The new area tiles contains a wall
171
- // Check that the area tiles don't bypass a wall
172
- // Collision while attempting to travel along the y axis
173
- // Check that the new area tiles don't contain a wall
174
- // The new area tiles contains a wall
175
- // The new area tiles contains a wall
176
- // Collision while attempting to travel diagonally
177
- // When the areas edge size is 1 and it attempts to travel
178
- // diagonally, a collision check is done for respective
179
- // x and y axis as well.
173
+
180
174
  /**
181
175
  * Gets the point within this area that is closest to another.
182
176
  *
@@ -194,19 +188,13 @@ declare namespace net.runelite.api.coords {
194
188
  * @return Returns true if this WorldArea has line of sight to the other
195
189
  */
196
190
  hasLineOfSightTo(wv: WorldView, other: WorldArea): boolean;
197
- // Determine which position to compare with for this NPC
198
- // Determine which position to compare for the other actor
191
+
199
192
  private static hasLineOfSightTo(
200
193
  wv: WorldView,
201
194
  from: Tile,
202
195
  to: Tile,
203
196
  ): boolean;
204
- // Thanks to Henke for this method :)
205
- // Collision while traveling on the x axis
206
- // Collision while traveling on the y axis
207
- // Collision while traveling on the y axis
208
- // Collision while traveling on the x axis
209
- // No collision
197
+
210
198
  /**
211
199
  * Determine if this WorldArea has line of sight to another WorldArea.
212
200
  * <p>
@@ -228,6 +216,6 @@ declare namespace net.runelite.api.coords {
228
216
  *
229
217
  * @return Returns the WorldPoints in this WorldArea
230
218
  */
231
- toWorldPointList(): Array<WorldPoint>;
219
+ toWorldPointList(): java.util.List<WorldPoint>;
232
220
  }
233
221
  }