@wayward/types 2.14.3-beta.dev.20241226.1 → 2.14.4-beta

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 (294) hide show
  1. package/definitions/game/IGlobal.d.ts +2 -9
  2. package/definitions/game/game/Game.d.ts +7 -7
  3. package/definitions/game/game/IGame.d.ts +18 -2
  4. package/definitions/game/game/ILoot.d.ts +1 -0
  5. package/definitions/game/game/IObject.d.ts +3 -2
  6. package/definitions/game/game/doodad/Doodad.d.ts +18 -9
  7. package/definitions/game/game/doodad/DoodadManager.d.ts +2 -0
  8. package/definitions/game/game/doodad/DoodadUtilities.d.ts +25 -0
  9. package/definitions/game/game/doodad/IDoodad.d.ts +30 -0
  10. package/definitions/game/game/entity/Entity.d.ts +11 -4
  11. package/definitions/game/game/entity/EntityManager.d.ts +10 -3
  12. package/definitions/game/game/entity/Human.d.ts +17 -4
  13. package/definitions/game/game/entity/action/ActionExecutor.d.ts +9 -8
  14. package/definitions/game/game/entity/action/ActionsRegistration.d.ts +32 -30
  15. package/definitions/game/game/entity/action/IAction.d.ts +30 -23
  16. package/definitions/game/game/entity/action/actions/Absorb.d.ts +1 -1
  17. package/definitions/game/game/entity/action/actions/Alter.d.ts +1 -1
  18. package/definitions/game/game/entity/action/actions/CloseDoor.d.ts +1 -1
  19. package/definitions/game/game/entity/action/actions/Consecrate.d.ts +1 -1
  20. package/definitions/game/game/entity/action/actions/Craft.d.ts +1 -1
  21. package/definitions/game/game/entity/action/actions/CraftNew.d.ts +1 -1
  22. package/definitions/game/game/entity/action/actions/DetachContainer.d.ts +1 -1
  23. package/definitions/game/game/entity/action/actions/DiscoverRecipe.d.ts +14 -0
  24. package/definitions/game/game/entity/action/actions/Dismount.d.ts +1 -1
  25. package/definitions/game/game/entity/action/actions/DumpItems.d.ts +1 -1
  26. package/definitions/game/game/entity/action/actions/Enhance.d.ts +1 -1
  27. package/definitions/game/game/entity/action/actions/EquipFromArmorStand.d.ts +1 -1
  28. package/definitions/game/game/entity/action/actions/ExcavateCollapse.d.ts +24 -0
  29. package/definitions/game/game/entity/action/actions/Extinguish.d.ts +1 -1
  30. package/definitions/game/game/entity/action/actions/Exude.d.ts +1 -1
  31. package/definitions/game/game/entity/action/actions/Kneel.d.ts +1 -1
  32. package/definitions/game/game/entity/action/actions/OpenDoor.d.ts +1 -1
  33. package/definitions/game/game/entity/action/actions/PropOpenDoor.d.ts +1 -1
  34. package/definitions/game/game/entity/action/actions/Repair.d.ts +2 -1
  35. package/definitions/game/game/entity/action/actions/Rest.d.ts +1 -1
  36. package/definitions/game/game/entity/action/actions/Ride.d.ts +1 -1
  37. package/definitions/game/game/entity/action/actions/Rotate.d.ts +1 -1
  38. package/definitions/game/game/entity/action/actions/SetCreatureAi.d.ts +1 -1
  39. package/definitions/game/game/entity/action/actions/SetCreatureAiAll.d.ts +1 -1
  40. package/definitions/game/game/entity/action/actions/SetTitle.d.ts +1 -1
  41. package/definitions/game/game/entity/action/actions/Sleep.d.ts +1 -1
  42. package/definitions/game/game/entity/action/actions/Stack.d.ts +2 -2
  43. package/definitions/game/game/entity/action/actions/SwapWithArmorStand.d.ts +1 -1
  44. package/definitions/game/game/entity/action/actions/TakeFromArmorStand.d.ts +1 -1
  45. package/definitions/game/game/entity/action/actions/ToggleDoor.d.ts +1 -1
  46. package/definitions/game/game/entity/action/actions/ToggleVehicle.d.ts +1 -1
  47. package/definitions/game/game/entity/action/actions/Transmogrify.d.ts +1 -1
  48. package/definitions/game/game/entity/action/actions/helper/ConfirmDumpDropItems.d.ts +13 -0
  49. package/definitions/game/game/entity/action/usable/IUsableAction.d.ts +18 -1
  50. package/definitions/game/game/entity/action/usable/UsableAction.d.ts +2 -0
  51. package/definitions/game/game/entity/action/usable/UsableActionType.d.ts +3 -1
  52. package/definitions/game/game/entity/action/usable/actions/UsableActionsWorld.d.ts +1 -1
  53. package/definitions/game/game/entity/creature/Creature.d.ts +11 -2
  54. package/definitions/game/game/entity/creature/CreatureManager.d.ts +2 -1
  55. package/definitions/game/game/entity/creature/ICreature.d.ts +25 -1
  56. package/definitions/game/game/entity/player/Player.d.ts +17 -2
  57. package/definitions/game/game/entity/player/quest/quest/IQuest.d.ts +1 -0
  58. package/definitions/game/game/inspection/InfoProvider.d.ts +0 -2
  59. package/definitions/game/game/inspection/infoProviders/LevelValue.d.ts +3 -1
  60. package/definitions/game/game/inspection/infoProviders/MagicalDamageReduction.d.ts +1 -1
  61. package/definitions/game/game/inspection/infoProviders/MagicalDamageRegeneration.d.ts +1 -1
  62. package/definitions/game/game/inspection/infoProviders/MagicalPropertyValue.d.ts +3 -2
  63. package/definitions/game/game/inspection/infoProviders/creature/CreatureTamedInfo.d.ts +1 -0
  64. package/definitions/game/game/inspection/infoProviders/doodad/DoodadScareRadius.d.ts +20 -0
  65. package/definitions/game/game/inspection/infoProviders/doodad/StillWater.d.ts +3 -5
  66. package/definitions/game/game/inspection/infoProviders/item/ItemInvoke.d.ts +20 -0
  67. package/definitions/game/game/inspection/infoProviders/item/MagicalSourceTooltip.d.ts +2 -1
  68. package/definitions/game/game/inspection/infoProviders/item/use/ItemBuildInfo.d.ts +4 -1
  69. package/definitions/game/game/inspection/infoProviders/item/use/ItemConsumeInfo.d.ts +1 -1
  70. package/definitions/game/game/inspection/infoProviders/item/use/ItemEquipInfo.d.ts +1 -1
  71. package/definitions/game/game/inspection/infoProviders/stat/GenericInfo.d.ts +1 -0
  72. package/definitions/game/game/inspection/inspections/MagicInspection.d.ts +2 -2
  73. package/definitions/game/game/island/Island.d.ts +10 -3
  74. package/definitions/game/game/island/automation/IAutomation.d.ts +10 -0
  75. package/definitions/game/game/item/IItem.d.ts +28 -14
  76. package/definitions/game/game/item/IItemManager.d.ts +2 -2
  77. package/definitions/game/game/item/Item.d.ts +20 -8
  78. package/definitions/game/game/item/ItemFinder.d.ts +2 -1
  79. package/definitions/game/game/item/ItemManager.d.ts +7 -7
  80. package/definitions/game/game/item/ItemReference.d.ts +3 -3
  81. package/definitions/game/game/item/MagicalLoot.d.ts +21 -0
  82. package/definitions/game/game/magic/IMagicalProperty.d.ts +85 -0
  83. package/definitions/game/game/magic/MagicalPropertyManager.d.ts +7 -75
  84. package/definitions/game/game/magic/MagicalPropertyType.d.ts +25 -6
  85. package/definitions/game/game/mapgen/IMapGen.d.ts +1 -1
  86. package/definitions/game/game/mapgen/MapGenHelpers.d.ts +1 -1
  87. package/definitions/game/game/meta/SaveLoad.d.ts +1 -1
  88. package/definitions/game/game/meta/prompt/IPrompt.d.ts +111 -109
  89. package/definitions/game/game/meta/prompt/PromptDescriptions.d.ts +2 -0
  90. package/definitions/game/game/milestones/Milestones.d.ts +2 -0
  91. package/definitions/game/game/milestones/milestone/Runekeeper.d.ts +1 -1
  92. package/definitions/game/game/options/GameOptions.d.ts +1 -1
  93. package/definitions/game/game/options/modifiers/milestone/MilestoneModifier.d.ts +4 -0
  94. package/definitions/game/game/options/modifiers/milestone/MilestoneModifiersManager.d.ts +126 -0
  95. package/definitions/game/game/options/modifiers/milestone/modifiers/Afflicted.d.ts +2 -0
  96. package/definitions/game/game/options/modifiers/milestone/modifiers/Benevolent.d.ts +2 -0
  97. package/definitions/game/game/options/modifiers/milestone/modifiers/Boundless.d.ts +3 -0
  98. package/definitions/game/game/options/modifiers/milestone/modifiers/Crafter.d.ts +2 -0
  99. package/definitions/game/game/options/modifiers/milestone/modifiers/Curator.d.ts +2 -0
  100. package/definitions/game/game/options/modifiers/milestone/modifiers/Dedicated.d.ts +2 -0
  101. package/definitions/game/game/options/modifiers/milestone/modifiers/Diverse.d.ts +4 -0
  102. package/definitions/game/game/options/modifiers/milestone/modifiers/Doctor.d.ts +3 -0
  103. package/definitions/game/game/options/modifiers/milestone/modifiers/DragonSlayer.d.ts +2 -0
  104. package/definitions/game/game/options/modifiers/milestone/modifiers/Exsanguinated.d.ts +2 -0
  105. package/definitions/game/game/options/modifiers/milestone/modifiers/Exterminator.d.ts +2 -0
  106. package/definitions/game/game/options/modifiers/milestone/modifiers/Gardener.d.ts +2 -0
  107. package/definitions/game/game/options/modifiers/milestone/modifiers/Gatherer.d.ts +4 -0
  108. package/definitions/game/game/options/modifiers/milestone/modifiers/Grandmaster.d.ts +3 -0
  109. package/definitions/game/game/options/modifiers/milestone/modifiers/Helmsman.d.ts +3 -0
  110. package/definitions/game/game/options/modifiers/milestone/modifiers/Hounded.d.ts +2 -0
  111. package/definitions/game/game/options/modifiers/milestone/modifiers/Hunter.d.ts +2 -0
  112. package/definitions/game/game/options/modifiers/milestone/modifiers/Huntsman.d.ts +2 -0
  113. package/definitions/game/game/options/modifiers/milestone/modifiers/Invoker.d.ts +2 -0
  114. package/definitions/game/game/options/modifiers/milestone/modifiers/Locksmith.d.ts +2 -0
  115. package/definitions/game/game/options/modifiers/milestone/modifiers/Malevolent.d.ts +2 -0
  116. package/definitions/game/game/options/modifiers/milestone/modifiers/MasterOfAll.d.ts +4 -0
  117. package/definitions/game/game/options/modifiers/milestone/modifiers/Merchant.d.ts +3 -0
  118. package/definitions/game/game/options/modifiers/milestone/modifiers/Multitasker.d.ts +3 -0
  119. package/definitions/game/game/options/modifiers/milestone/modifiers/Navigator.d.ts +3 -0
  120. package/definitions/game/game/options/modifiers/milestone/modifiers/Operator.d.ts +3 -0
  121. package/definitions/game/game/options/modifiers/milestone/modifiers/Retailer.d.ts +2 -0
  122. package/definitions/game/game/options/modifiers/milestone/modifiers/Rouseabout.d.ts +4 -0
  123. package/definitions/game/game/options/modifiers/milestone/modifiers/RunekeeperModifier.d.ts +2 -0
  124. package/definitions/game/game/options/modifiers/milestone/modifiers/Serene.d.ts +2 -0
  125. package/definitions/game/game/options/modifiers/milestone/modifiers/Statistician.d.ts +2 -0
  126. package/definitions/game/game/options/modifiers/milestone/modifiers/Talented.d.ts +3 -0
  127. package/definitions/game/game/options/modifiers/milestone/modifiers/Thrower.d.ts +2 -0
  128. package/definitions/game/game/options/modifiers/milestone/modifiers/Traitor.d.ts +2 -0
  129. package/definitions/game/game/options/modifiers/milestone/modifiers/Trapper.d.ts +2 -0
  130. package/definitions/game/game/options/modifiers/milestone/modifiers/Treasurer.d.ts +2 -0
  131. package/definitions/game/game/options/modifiers/milestone/modifiers/Turbulent.d.ts +2 -0
  132. package/definitions/game/game/options/modifiers/milestone/modifiers/Versatile.d.ts +2 -0
  133. package/definitions/game/game/options/modifiers/milestone/modifiers/shared/StatBonusMilestoneModifier.d.ts +2 -0
  134. package/definitions/game/game/reference/IReferenceManager.d.ts +2 -1
  135. package/definitions/game/game/reference/ReferenceManager.d.ts +1 -1
  136. package/definitions/game/game/tile/ITileEvent.d.ts +2 -1
  137. package/definitions/game/game/tile/Tile.d.ts +37 -3
  138. package/definitions/game/game/tile/TileEvent.d.ts +0 -1
  139. package/definitions/game/game/tile/TileEventManager.d.ts +1 -1
  140. package/definitions/game/game/tile/events/Fire.d.ts +1 -1
  141. package/definitions/game/game/tile/events/MeltingTile.d.ts +1 -1
  142. package/definitions/game/game/tile/events/Puddles.d.ts +1 -1
  143. package/definitions/game/game/time/TimeManager.d.ts +8 -0
  144. package/definitions/game/language/Dictionary.d.ts +60 -58
  145. package/definitions/game/language/DictionaryMap.d.ts +122 -114
  146. package/definitions/game/language/ITranslation.d.ts +2 -0
  147. package/definitions/game/{multiplayer/packets/shared/DiscoverRecipePacket.d.ts → language/MagicAffix.d.ts} +5 -9
  148. package/definitions/game/language/Translation.d.ts +1 -2
  149. package/definitions/game/language/dictionary/Health.d.ts +2 -1
  150. package/definitions/game/language/dictionary/Message.d.ts +855 -830
  151. package/definitions/game/language/dictionary/Misc.d.ts +31 -26
  152. package/definitions/game/language/dictionary/UiTranslation.d.ts +931 -910
  153. package/definitions/game/language/english/item/MagicalPropertyAffixes.d.ts +13 -0
  154. package/definitions/game/language/english/item/MagicalSubPropertyAffixes.d.ts +13 -0
  155. package/definitions/game/language/impl/TranslationImpl.d.ts +8 -2
  156. package/definitions/game/mod/IMod.d.ts +1 -1
  157. package/definitions/game/multiplayer/IMultiplayer.d.ts +79 -76
  158. package/definitions/game/multiplayer/Multiplayer.d.ts +1 -1
  159. package/definitions/game/multiplayer/SyncRegion.d.ts +22 -0
  160. package/definitions/game/multiplayer/packets/IPacket.d.ts +3 -1
  161. package/definitions/game/renderer/IRenderer.d.ts +27 -26
  162. package/definitions/game/renderer/RenderersNotifiers.d.ts +2 -2
  163. package/definitions/game/renderer/notifier/INotifier.d.ts +51 -2
  164. package/definitions/game/renderer/notifier/Notifier.d.ts +2 -2
  165. package/definitions/game/renderer/world/WorldRenderer.d.ts +2 -1
  166. package/definitions/game/resource/IResourceLoader.d.ts +18 -18
  167. package/definitions/game/save/ISaveManager.d.ts +1 -1
  168. package/definitions/game/save/SaveManager.d.ts +1 -1
  169. package/definitions/game/save/SaveMetadata.d.ts +1 -1
  170. package/definitions/game/save/data/ISaveData.d.ts +23 -0
  171. package/definitions/game/save/data/ISaveDataGlobal.d.ts +3 -0
  172. package/definitions/game/save/data/SaveData.d.ts +10 -1
  173. package/definitions/game/save/data/SaveDataGlobal.d.ts +1 -1
  174. package/definitions/game/save/serializer/ISerializer.d.ts +1 -1
  175. package/definitions/game/save/serializer/PropertiesToSerialize.d.ts +5 -1
  176. package/definitions/game/save/serializer/Serializer.d.ts +1 -1
  177. package/definitions/game/save/upgrade/UpgradePlayer.d.ts +1 -1
  178. package/definitions/game/save/upgrade/UpgradeSaveDataGlobal.d.ts +1 -1
  179. package/definitions/game/save/upgrade/UpgradeVersion.d.ts +18 -3
  180. package/definitions/game/save/upgrade/UpgradeVersionRegistry.d.ts +4 -1
  181. package/definitions/game/save/upgrade/versions/beta2.14.0/_beta.2.14.0-dev20240828.d.ts +1 -1
  182. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev00000001.d.ts +1 -1
  183. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev00000002.d.ts +1 -1
  184. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20240827.d.ts +1 -1
  185. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20240828.d.ts +1 -1
  186. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20240829.d.ts +1 -1
  187. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20240901.d.ts +1 -1
  188. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20240905.d.ts +1 -1
  189. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20241024.d.ts +1 -1
  190. package/definitions/game/save/upgrade/versions/beta2.14.0/beta2.14.0-dev20241129.d.ts +1 -1
  191. package/definitions/game/save/upgrade/versions/beta2.14.3/beta2.14.3-dev20241223.d.ts +1 -1
  192. package/definitions/game/save/upgrade/versions/beta2.14.4/beta.2.14.4-dev20250422.d.ts +12 -0
  193. package/definitions/game/save/upgrade/versions/beta2.14.4/beta2.14.4-dev20241231.d.ts +12 -0
  194. package/definitions/game/save/upgrade/versions/beta2.14.4/beta2.14.4-dev20250220.d.ts +12 -0
  195. package/definitions/game/steamworks/ISteamworks.d.ts +1 -6
  196. package/definitions/game/steamworks/Steamworks.d.ts +14 -5
  197. package/definitions/game/ui/{screen/screens/splash → component}/Notice.d.ts +4 -2
  198. package/definitions/game/ui/component/dropdown/IslandDropdown.d.ts +1 -1
  199. package/definitions/game/ui/component/dropdown/MagicalPropertyDropdown.d.ts +1 -2
  200. package/definitions/game/ui/input/Bindable.d.ts +143 -142
  201. package/definitions/game/ui/input/InputManager.d.ts +4 -2
  202. package/definitions/game/ui/input/Macros.d.ts +1 -1
  203. package/definitions/game/ui/screen/screens/SplashScreen.d.ts +1 -1
  204. package/definitions/game/ui/screen/screens/game/DialogManager.d.ts +8 -3
  205. package/definitions/game/ui/screen/screens/game/InspectionsTooltipHandler.d.ts +5 -1
  206. package/definitions/game/ui/screen/screens/game/ReferenceTooltipHandler.d.ts +1 -1
  207. package/definitions/game/ui/screen/screens/game/component/InspectionsList.d.ts +0 -1
  208. package/definitions/game/ui/screen/screens/game/component/ItemComponent.d.ts +6 -0
  209. package/definitions/game/ui/screen/screens/game/component/container/ContainerBucketItemList.d.ts +4 -0
  210. package/definitions/game/ui/screen/screens/game/component/item/ItemComponentEventBus.d.ts +2 -1
  211. package/definitions/game/ui/screen/screens/game/dialog/EquipmentDialog.d.ts +1 -1
  212. package/definitions/game/ui/screen/screens/game/dialog/MilestonesDialog.d.ts +1 -0
  213. package/definitions/game/ui/screen/screens/game/dialog/QuestDialog.d.ts +1 -0
  214. package/definitions/game/ui/screen/screens/game/dialog/equipment/EquipmentSlotTooltip.d.ts +1 -1
  215. package/definitions/game/ui/screen/screens/game/dialog/unlockables/UnlockablesDialog.d.ts +1 -0
  216. package/definitions/game/ui/screen/screens/game/static/actions/ActionSlot.d.ts +2 -0
  217. package/definitions/game/ui/screen/screens/game/static/messages/MessageLog.d.ts +1 -0
  218. package/definitions/game/ui/screen/screens/game/util/item/ItemStylesheet.d.ts +12 -0
  219. package/definitions/game/ui/screen/screens/menu/menus/main/ChangelogMenu.d.ts +1 -1
  220. package/definitions/game/ui/screen/screens/menu/menus/options/ErrorReportingNotice.d.ts +14 -0
  221. package/definitions/game/ui/screen/screens/menu/menus/options/TabDeveloper.d.ts +3 -1
  222. package/definitions/game/ui/screen/screens/menu/menus/options/TabSaveData.d.ts +1 -0
  223. package/definitions/game/ui/screen/screens/splash/DevelopmentBranchNotice.d.ts +1 -1
  224. package/definitions/game/ui/tooltip/Tooltip.d.ts +2 -2
  225. package/definitions/game/ui/util/ComponentManipulator.d.ts +6 -5
  226. package/definitions/game/ui/util/Draggable.d.ts +8 -15
  227. package/definitions/game/ui/util/HighlightManager.d.ts +11 -1
  228. package/definitions/game/ui/util/IHighlight.d.ts +1 -0
  229. package/definitions/game/utilities/Observer.d.ts +1 -1
  230. package/definitions/game/utilities/VersionTranslation.d.ts +18 -0
  231. package/definitions/game/utilities/dev/Debug.d.ts +4 -0
  232. package/definitions/game/utilities/dev/Performance2.d.ts +1 -0
  233. package/definitions/game/utilities/memory/MemoryLeakDetector.d.ts +8 -2
  234. package/definitions/game/utilities/object/Merge.d.ts +3 -0
  235. package/definitions/game/utilities/object/PrettyJsonStringify.d.ts +23 -0
  236. package/definitions/game/utilities/trello/ITrello.d.ts +1 -1
  237. package/definitions/game/utilities/trello/Trello.d.ts +1 -1
  238. package/definitions/hosts/node/nodeLoader.d.ts +1 -0
  239. package/definitions/hosts/shared/globalTypes.d.ts +6 -0
  240. package/definitions/hosts/shared/globals.d.ts +2 -2
  241. package/definitions/lint/condition-complexity.d.mts +31 -0
  242. package/definitions/{devserver/middleware/util → server/core}/Middleware.d.ts +1 -0
  243. package/definitions/{devserver → server/core}/middleware/E404.d.ts +1 -1
  244. package/definitions/server/core/middleware/Probe.d.ts +13 -0
  245. package/definitions/{devserver → server/core}/middleware/Static.d.ts +1 -1
  246. package/definitions/{devserver → server/core}/middleware/Validate.d.ts +1 -1
  247. package/definitions/{devserver/middleware → server/core}/util/SendFile.d.ts +1 -1
  248. package/definitions/{matchmakingserver → server/dev}/index.d.ts +1 -3
  249. package/definitions/{devserver → server/dev}/middleware/CustomInternalMods.d.ts +1 -1
  250. package/definitions/{devserver → server/dev}/middleware/SaveFolder.d.ts +1 -1
  251. package/definitions/server/error/Router.d.ts +13 -0
  252. package/definitions/server/error/index.d.ts +11 -0
  253. package/definitions/server/error/middleware/ReportError.d.ts +13 -0
  254. package/definitions/server/error/util/SendDiscordMessage.d.ts +19 -0
  255. package/definitions/{matchmakingserver → server/matchmaking}/dedicatedServer.d.ts +1 -1
  256. package/definitions/test/core/applicationDom.d.ts +4 -2
  257. package/definitions/test/core/applicationInteractions.d.ts +4 -0
  258. package/definitions/test/suite/functionalTests/singleplayer/ui/DialogLeak.d.ts +13 -0
  259. package/definitions/{devserver/index.d.ts → utilities/ApplyTsConfigPaths.d.ts} +1 -1
  260. package/definitions/utilities/Errors.d.ts +4 -0
  261. package/definitions/utilities/Functions.d.ts +1 -1
  262. package/definitions/utilities/Log.d.ts +35 -3
  263. package/definitions/{game/utilities → utilities}/Version.d.ts +5 -9
  264. package/definitions/utilities/dev/DebugShared.d.ts +23 -0
  265. package/definitions/utilities/event/EventEmitter.d.ts +39 -7
  266. package/definitions/utilities/memory/ILifetime.d.ts +5 -1
  267. package/definitions/utilities/object/Objects.d.ts +9 -0
  268. package/definitions/utilities/prototype/Array.d.ts +2 -1
  269. package/definitions/utilities/prototype/Define.d.ts +2 -0
  270. package/definitions/utilities/random/IRandom.d.ts +1 -1
  271. package/definitions/utilities/random/Random.d.ts +1 -1
  272. package/definitions/utilities/random/RandomUtilities.d.ts +2 -2
  273. package/definitions/utilities/random/SeededGenerator.d.ts +1 -1
  274. package/definitions/utilities/{typesglobal → types}/Types.d.ts +3 -0
  275. package/definitions/utilities/types.d.ts +18 -0
  276. package/package.json +3 -3
  277. /package/definitions/game/game/entity/action/actions/helper/{ConfirmGatherHarvest.d.ts → ConfirmGatherHarvestButcher.d.ts} +0 -0
  278. /package/definitions/{devserver → server/core}/util/Log.d.ts +0 -0
  279. /package/definitions/{devserver → server/dev}/Router.d.ts +0 -0
  280. /package/definitions/{devserver/middleware → server/dev}/util/GameLogFilter.d.ts +0 -0
  281. /package/definitions/{matchmakingserver → server/matchmaking}/directoryConnection.d.ts +0 -0
  282. /package/definitions/{matchmakingserver → server/matchmaking}/globalMatchmaking.d.ts +0 -0
  283. /package/definitions/{matchmakingserver → server/matchmaking}/globalServerDirectory.d.ts +0 -0
  284. /package/definitions/{matchmakingserver/vps.d.ts → server/matchmaking/index.d.ts} +0 -0
  285. /package/definitions/{matchmakingserver → server/matchmaking}/server.d.ts +0 -0
  286. /package/definitions/{matchmakingserver → server/matchmaking}/shared.d.ts +0 -0
  287. /package/definitions/utilities/{types → type}/Assert.d.ts +0 -0
  288. /package/definitions/utilities/{typesglobal → types}/Class.d.ts +0 -0
  289. /package/definitions/utilities/{typesglobal → types}/Descriptions.d.ts +0 -0
  290. /package/definitions/utilities/{typesglobal → types}/Function.d.ts +0 -0
  291. /package/definitions/utilities/{typesglobal → types}/Immutable.d.ts +0 -0
  292. /package/definitions/utilities/{typesglobal → types}/Iterables.d.ts +0 -0
  293. /package/definitions/utilities/{typesglobal → types}/Misc.d.ts +0 -0
  294. /package/definitions/utilities/{typesglobal → types}/Objects.d.ts +0 -0
@@ -11,5 +11,5 @@
11
11
  import { Action } from "@wayward/game/game/entity/action/Action";
12
12
  import { ActionArgument } from "@wayward/game/game/entity/action/IAction";
13
13
  import { ItemType } from "@wayward/game/game/item/IItem";
14
- export declare const Stack: Action<[ActionArgument.Container, import("../argument/ActionArgumentEnum").default<ItemType, "Bow" | "None" | "String" | "HideGlue" | "AnimalSkull" | "GraniteArrow" | "GraniteArrowhead" | "PileOfAsh" | "BarkLeggings" | "BarkShield" | "BarkTunic" | "Bone" | "Branch" | "CactusSpines" | "Charcoal" | "GraniteFlooring" | "CookedMeat" | "Earthworm" | "Feather" | "Fertilizer" | "WaterskinOfSeawater" | "FirePlough" | "BeggartickSeeds" | "Fossil" | "GoldCoins" | "GoldenChalice" | "GoldenRing" | "GoldShortSword" | "GrassSeeds" | "IronOre" | "WoodenDowels" | "Granite" | "LeafBedroll" | "Hide" | "Leaves" | "Limestone" | "Log" | "GraniteMortarAndPestle" | "ButtonMushrooms" | "Nopal" | "Peat" | "Sandstone" | "PileOfGravel" | "PileOfBeachSand" | "WoodenArrow" | "GraniteAxe" | "Bandage" | "WovenFabric" | "CactusNeedle" | "GraniteShovel" | "WoodenSpear" | "Suture" | "Raft" | "RawMeat" | "Raspberries" | "FlyAmanita" | "Rope" | "MapleSeeds" | "Badderlocks" | "SharpGlass" | "SharpGranite" | "Skullcap" | "SmoothGranite" | "Soil" | "GraniteSpear" | "Stones" | "GraniteWall" | "StrippedBark" | "Leather" | "Tannin" | "MilkThistleSeeds" | "TreeBark" | "HoneyFungus" | "ClematisVine" | "Twigs" | "Waterskin" | "WoodenPole" | "PeatBandage" | "BowDrill" | "FishingNet" | "RawCod" | "CookedCod" | "GraniteCampfire" | "VineWhip" | "PileOfSnow" | "BarkTorch" | "LitBarkTorch" | "HandDrill" | "SmallBag" | "Shale" | "SharpenedBone" | "Grindstone" | "RawFishSteak" | "CookedFishSteak" | "WaterskinOfDesalinatedWater" | "BoatPaddle" | "BullBoat" | "RefinedSand" | "Spyglass" | "Retort" | "RawClay" | "RawClayBlowpipe" | "ClayBlowpipe" | "LeatherBelt" | "LeatherTunic" | "LeatherBoots" | "LeatherCap" | "LeatherGorget" | "LeatherPants" | "LeatherGloves" | "GraniteFurnace" | "SandstoneKiln" | "IronTongs" | "Talc" | "TalcumPowder" | "WoodenSandCastFlask" | "Lens" | "PlantRoots" | "Lockpick" | "BoneNeedle" | "Pineapple" | "TatteredMap" | "Coal" | "SmeltedWroughtIron" | "LimestonePowder" | "SmeltedIron" | "Backpack" | "RottenMeat" | "GraniteHammer" | "RawChicken" | "CookedChicken" | "GraniteAnvil" | "WoodenChest" | "IronShortSword" | "IronBreastplate" | "IronBoots" | "IronHelmet" | "IronGorget" | "IronCuisses" | "IronGauntlets" | "IronHeater" | "SandstoneWall" | "SandstoneFlooring" | "SpiderSilk" | "AnimalFat" | "TallowTorch" | "ClayFlakes" | "GreenSand" | "OldInstructionalScroll" | "SlimeGelatin" | "SlimeGlue" | "CookedSpiderMeat" | "SpiderMeat" | "IronLockpick" | "RottingVegetation" | "Chives" | "IronHammer" | "IronSpear" | "IronShovel" | "IronDoubleAxe" | "IronPickaxe" | "Inkstick" | "Coconut" | "PalmLeaf" | "Offal" | "BoneFragments" | "LitPoleTorch" | "CottonBoll" | "CottonSeeds" | "CottonFabric" | "BonePole" | "Tourniquet" | "WroughtIronPickaxe" | "WroughtIronDoubleAxe" | "WroughtIronShovel" | "WroughtIronSpear" | "WroughtIronHammer" | "WroughtIronLockpick" | "WroughtIronShield" | "WroughtIronGauntlets" | "WroughtIronCuisses" | "WroughtIronGorget" | "WroughtIronHelmet" | "WroughtIronBoots" | "WroughtIronBreastplate" | "WroughtIronShortSword" | "WoodenWall" | "WoodenFlooring" | "WoodenDoor" | "FishingRod" | "MessageInABottle" | "CarbonPowder" | "PileOfCompost" | "FishGlue" | "WoodenShavings" | "GraniteDeadfall" | "Snare" | "WaterskinOfMedicinalWater" | "CharcoalBandage" | "WoodenTongs" | "WroughtIronTongs" | "SheetOfGlass" | "SolarStill" | "TinWaterStill" | "GraniteSundial" | "LitTallowTorch" | "Sinew" | "ShortBow" | "LongBow" | "CompositeBow" | "WaterskinOfPurifiedFreshWater" | "WaterskinOfUnpurifiedFreshWater" | "GlassBottle" | "Cork" | "GlassBottleOfSeawater" | "GlassBottleOfDesalinatedWater" | "GlassBottleOfMedicinalWater" | "GlassBottleOfPurifiedFreshWater" | "GlassBottleOfUnpurifiedFreshWater" | "WroughtIronArrow" | "IronArrow" | "GraniteBullet" | "WroughtIronBullet" | "IronBullet" | "LeatherQuiver" | "Ectoplasm" | "MagicalEssence" | "WoodenFence" | "CreatureIdol" | "CordedSling" | "LeatherSling" | "WroughtIronArrowhead" | "IronArrowhead" | "Hammock" | "CottonBedroll" | "FeatherBedroll" | "RawTaintedMeat" | "CookedTaintedMeat" | "GraniteKnife" | "RawBlindfish" | "CookedBlindfish" | "Pemmican" | "CookedPemmican" | "Sail" | "Sailboat" | "ChickenEgg" | "BoiledChickenEgg" | "SheafOfHay" | "Niter" | "Saltpeter" | "BlackPowder" | "FlintlockPistol" | "Giblets" | "ExplosiveTrap" | "SkeletalMageWand" | "RawClayJug" | "ClayJug" | "ClayJugOfSeawater" | "ClayJugOfDesalinatedWater" | "ClayJugOfMedicinalWater" | "ClayJugOfPurifiedFreshWater" | "ClayJugOfUnpurifiedFreshWater" | "RawClayBrick" | "ClayBrick" | "ClayWall" | "ClayFlooring" | "PineappleSeeds" | "RaspberrySeeds" | "PricklyPearSeeds" | "ClematisSeeds" | "PaperSheet" | "PaperMold" | "Beggarticks" | "MilkThistleFlowers" | "DrawnMap" | "TatteredClothShirt" | "TatteredClothTrousers" | "WoodenGate" | "PoisonIvyLeaves" | "PoisonIvySeeds" | "WroughtIronChest" | "IronChest" | "SwitchgrassSeeds" | "Apple" | "SpiderEggs" | "TailFeathers" | "AppleSeeds" | "VenomGland" | "OrnateWoodenChest" | "RollOfRedCarpet" | "OrnateCape" | "FireBladder" | "GoldenKey" | "WoodenShortSword" | "ClayKiln" | "ClayCampfire" | "ClayFurnace" | "CopperWaterStill" | "SandstoneCampfire" | "SandstoneFurnace" | "WroughtIronWaterStill" | "GraniteKiln" | "WroughtIronAnvil" | "IronAnvil" | "MageRobe" | "CrackedOrb" | "AnimalClaw" | "AnimalPelt" | "AnimalFur" | "Scales" | "SharkFin" | "RawReptileMeat" | "CookedReptileMeat" | "Tentacles" | "CookedTentacles" | "WormMeat" | "CookedWormMeat" | "GranitePickaxe" | "WroughtIronAxe" | "IronAxe" | "FertileSoil" | "GraniteHoe" | "WroughtIronHoe" | "IronHoe" | "LavaBeetleHelmet" | "SpruceCone" | "SpruceSeeds" | "SpruceNeedles" | "CypressCone" | "CypressSeeds" | "CypressLeaves" | "Lettuce" | "LettuceSeeds" | "ChiveSeeds" | "Potato" | "PotatoSeeds" | "Carrot" | "CarrotSeeds" | "CornEar" | "CornSeeds" | "Cucumber" | "CucumberSeeds" | "Tomato" | "TomatoSeeds" | "Pumpkin" | "PumpkinSeeds" | "PricklyPearFruit" | "SugarCaneStalks" | "SugarCaneSeeds" | "BushelOfWheat" | "Wheat" | "CookedPotato" | "CookedCornCob" | "BundleOfSwitchgrass" | "Cloak" | "WoodenMortarAndPestle" | "SandstoneMortarAndPestle" | "WroughtIronMortarAndPestle" | "IronMortarAndPestle" | "RawClayMortarAndPestle" | "ClayMortarAndPestle" | "CopperOre" | "SmeltedCopper" | "CopperPickaxe" | "CopperDoubleAxe" | "CopperShovel" | "CopperSpear" | "CopperHammer" | "CopperLockpick" | "CopperBuckler" | "CopperGauntlets" | "CopperGreaves" | "CopperGorget" | "CopperHelmet" | "CopperBoots" | "CopperCuirass" | "CopperShortSword" | "CopperTongs" | "CopperArrow" | "CopperBullet" | "CopperArrowhead" | "CopperChest" | "CopperAnvil" | "CopperAxe" | "CopperHoe" | "CopperMortarAndPestle" | "WaterskinOfGoatMilk" | "ClayJugOfGoatMilk" | "GlassBottleOfGoatMilk" | "Obsidian" | "OrnateBlueBook" | "Journal" | "MossCoveredBook" | "GildedRedBook" | "ArrowShaft" | "SlitherSucker" | "AberrantSlitherSucker" | "StrawHat" | "BlackplateSabatons" | "BlackplateBreastplate" | "BlackplateGauntlets" | "BlackplateGorget" | "BlackplateGreaves" | "BlackplateHelmet" | "DeathKnightAxe" | "Macuahuitl" | "ObsidianArrow" | "ObsidianArrowhead" | "ObsidianAxe" | "ObsidianKnife" | "ObsidianShovel" | "ObsidianSpear" | "TumbleweedSeeds" | "CoconutHusk" | "PeeledCoconut" | "CoconutMeat" | "CoconutContainerOfCoconutWater" | "CoconutContainer" | "CoconutContainerOfSeawater" | "CoconutContainerOfDesalinatedWater" | "CoconutContainerOfMedicinalWater" | "CoconutContainerOfPurifiedFreshWater" | "CoconutContainerOfUnpurifiedFreshWater" | "CoconutContainerOfGoatMilk" | "OldEducationalScroll" | "StrippedHide" | "ClaySandCastFlask" | "SandstoneSandCastFlask" | "GraniteSandCastFlask" | "BoneGlue" | "CutHide" | "BoneMeal" | "PileOfDesertSand" | "JoshuaTreeLeaves" | "JoshuaTreeFruit" | "JoshuaTreeSeeds" | "CookedJoshuaTreeFruit" | "JoshuaTreeFlowers" | "SaguaroCactusFruit" | "SaguaroCactusSeeds" | "SaguaroCactusChunk" | "GraniteWell" | "SandstoneWell" | "ClayWell" | "AloeVeraLeaves" | "AloeVeraSeeds" | "DeadScorpion" | "DeadAberrantScorpion" | "CookedScorpion" | "CookedAberrantScorpion" | "ScorpionStinger" | "CopperBakingTray" | "WroughtIronBakingTray" | "IronBakingTray" | "Flour" | "Dough" | "Hardtack" | "HitchingPost" | "ShreddedPaper" | "RawMudskipper" | "RawAberrantMudskipper" | "CookedMudskipper" | "CookedAberrantMudskipper" | "RawRedSnapper" | "CookedRedSnapper" | "RawWalleye" | "CookedWalleye" | "WoodenShield" | "CopperRefinementTools" | "WroughtIronRefinementTools" | "IronRefinementTools" | "ScaleBelt" | "ScaleVest" | "ScaleBoots" | "ScaleCap" | "ScaleBevor" | "ScaleLeggings" | "ScaleGloves" | "CookedJoshuaTreeFlowers" | "SaguaroCactusRibs" | "BladesOfGrass" | "AnimalDroppings" | "AnimalDung" | "Guano" | "Tallow" | "TallowCandle" | "LitTallowCandle" | "WispDust" | "MagicalAspect" | "GoldenSextant" | "RawChoppedFish" | "CookedChoppedFish" | "CookedFishKebab" | "AshCement" | "AshCementBrick" | "AshCementFlooring" | "AshCementWall" | "IceShard" | "PenguinEgg" | "BoiledPenguinEgg" | "RawPenguinMeat" | "CookedPenguinMeat" | "Crowberries" | "CookedCrowberries" | "CrowberrySeeds" | "Winterberries" | "WinterberrySeeds" | "ArcticPoppies" | "ArcticPoppySeeds" | "PirateHat" | "AloeVeraBandage" | "SharkTooth" | "CopperKnife" | "WroughtIronKnife" | "IronKnife" | "TinOre" | "SmeltedTin" | "TinPickaxe" | "TinDoubleAxe" | "TinShovel" | "TinSpear" | "TinHammer" | "TinLockpick" | "TinShield" | "TinGloves" | "TinChausses" | "TinBevor" | "TinHelmet" | "TinFootgear" | "TinCuirass" | "TinShortSword" | "TinTongs" | "TinArrow" | "TinBullet" | "TinArrowhead" | "TinChest" | "TinAnvil" | "TinAxe" | "TinHoe" | "TinMortarAndPestle" | "TinBakingTray" | "TinRefinementTools" | "TinKnife" | "SmeltedBronze" | "BronzePickaxe" | "BronzeDoubleAxe" | "BronzeShovel" | "BronzeSpear" | "BronzeHammer" | "BronzeLockpick" | "BronzeKiteShield" | "BronzeGauntlets" | "BronzeGreaves" | "BronzeBevor" | "BronzeHelmet" | "BronzeBoots" | "BronzeChestArmor" | "BronzeShortSword" | "BronzeTongs" | "BronzeArrow" | "BronzeBullet" | "BronzeArrowhead" | "BronzeChest" | "BronzeAnvil" | "BronzeAxe" | "BronzeHoe" | "BronzeMortarAndPestle" | "BronzeBakingTray" | "BronzeRefinementTools" | "BronzeKnife" | "IceBrick" | "SnowBrick" | "IceWall" | "IceFlooring" | "SnowWall" | "SnowFlooring" | "CaliginousScrap" | "MagicalExtract" | "ShimmeringFibers" | "MagicalTwine" | "SandstoneHammer" | "SandstoneBullet" | "SandstoneAnvil" | "SnowScarecrow" | "FrozenFlesh" | "AnimalTusk" | "WhitePineCone" | "WhitePineSeeds" | "WhitePineNeedles" | "FurCoat" | "FurMittens" | "FurBoots" | "BirdDroppings" | "HardenedCoil" | "MagicalBinding" | "ArmoredScales" | "RawPangolinMeat" | "CookedPangolinMeat" | "ArmoredScaleBelt" | "ArmoredScaleVest" | "ArmoredScaleBoots" | "ArmoredScaleCrown" | "ArmoredScaleBevor" | "ArmoredScaleCuisses" | "ArmoredScaleGloves" | "TinNeedle" | "CopperNeedle" | "WroughtIronNeedle" | "IronNeedle" | "BronzeNeedle" | "TuftsOfTanglehead" | "TangleheadSeeds" | "WispInAGlassBottle" | "AberrantWispInAGlassBottle" | "WispInAClayJug" | "AberrantWispInAClayJug" | "WispInACoconutContainer" | "AberrantWispInACoconutContainer" | "WispInAWaterskin" | "AberrantWispInAWaterskin" | "StrawScarecrow" | "CactusScarecrow" | "ClothShirt" | "ClothTrousers" | "UnripePapaya" | "Papaya" | "PapayaSeeds" | "PalapalaiFrond" | "PalapalaiSpores" | "ButtonMushroomSpores" | "FlyAmanitaSpores" | "BrambleCrown" | "DarkBrambleCrown" | "Cotton" | "WaterskinOfSwampWater" | "GlassBottleOfSwampWater" | "ClayJugOfSwampWater" | "CoconutContainerOfSwampWater" | "WaterskinOfFilteredWater" | "GlassBottleOfFilteredWater" | "ClayJugOfFilteredWater" | "CoconutContainerOfFilteredWater" | "ClayFilter" | "SandstoneAxe" | "SandstoneShovel" | "SharpSandstone" | "SmoothSandstone" | "SandstoneSpear" | "SandstoneKnife" | "SandstonePickaxe" | "SandstoneHoe" | "SandstoneDeadfall" | "SandstoneSundial" | "WoodenPlank" | "WoodenWheel" | "WoodenAxle" | "WoodenMinecart" | "WoodenRail" | "WoodenTrack" | "TinWheel" | "TinAxle" | "TinMinecart" | "TinRail" | "TinTrack" | "CopperWheel" | "CopperAxle" | "CopperMinecart" | "CopperRail" | "CopperTrack" | "WroughtIronWheel" | "WroughtIronAxle" | "WroughtIronMinecart" | "WroughtIronRail" | "WroughtIronTrack" | "IronWheel" | "IronAxle" | "IronMinecart" | "IronRail" | "IronTrack" | "BronzeWheel" | "BronzeAxle" | "BronzeMinecart" | "BronzeRail" | "BronzeTrack" | "BasaltArrow" | "BasaltArrowhead" | "Basalt" | "BasaltMortarAndPestle" | "BasaltAxe" | "BasaltShovel" | "SharpBasalt" | "SmoothBasalt" | "BasaltSpear" | "BasaltFlooring" | "BasaltWall" | "BasaltCampfire" | "BasaltFurnace" | "BasaltHammer" | "BasaltAnvil" | "BasaltDeadfall" | "IronWaterStill" | "BasaltSundial" | "BasaltBullet" | "BasaltKnife" | "BasaltKiln" | "BasaltPickaxe" | "BasaltHoe" | "BasaltSandCastFlask" | "BasaltWell" | "WoodenTrackGate" | "MoldyScroll" | "MysteriousParchment" | "MagicalInscription" | "CattailLeaves" | "CattailShoots" | "CattailFlowers" | "CattailSeeds" | "CobblestoneFlooring" | "WaterLilies" | "Mud" | "SpikerushSheaths" | "SpikerushSeeds" | "WoodenBookcase" | "GraniteLighthouse" | "SandstoneLighthouse" | "ClayLighthouse" | "BasaltLighthouse" | "WoodenCage" | "FullWoodenCage" | "TinCage" | "FullTinCage" | "CopperCage" | "FullCopperCage" | "WroughtIronCage" | "FullWroughtIronCage" | "IronCage" | "FullIronCage" | "BronzeCage" | "FullBronzeCage" | "Amber" | "Tourmaline" | "Topaz" | "Opal" | "Sapphire" | "WoodGolemFigure" | "ClayGolemFigure" | "GraniteGolemFigure" | "SandstoneGolemFigure" | "BasaltGolemFigure" | "AberrantWoodGolemFigure" | "AberrantClayGolemFigure" | "AberrantGraniteGolemFigure" | "AberrantSandstoneGolemFigure" | "AberrantBasaltGolemFigure" | "GraniteDripstone" | "SandstoneDripstone" | "BasaltDripstone" | "ClayDripstone" | "BronzeWaterStill" | "ArmorStand" | "RuneOfEvil" | "RuneOfChaos" | "RuneOfGood" | "GraniteAltar" | "WoodenWheelbarrow" | "TinWheelbarrow" | "CopperWheelbarrow" | "WroughtIronWheelbarrow" | "IronWheelbarrow" | "BronzeWheelbarrow" | "GraniteCrucible" | "SandstoneCrucible" | "BasaltCrucible" | "RawClayCrucible" | "ClayCrucible" | "SandstoneAltar" | "BasaltAltar" | "ClayAltar" | "PineResin" | "SpruceResin" | "CypressResin" | "Pitch" | "PitchGlue" | "MagicalOrb" | "RawAberrantCod" | "CookedAberrantCod" | "RawAberrantBlindfish" | "CookedAberrantBlindfish" | "RawAberrantRedSnapper" | "CookedAberrantRedSnapper" | "RawAberrantWalleye" | "CookedAberrantWalleye" | "FishBones" | "AnimalCartilage" | "GelatinPowder" | "Gelatin" | "Aspic" | "FruitCocktail" | "VegetableTerrine" | "TatteredClothBandana" | "ClothBandana" | "RustedScimitar" | "TricorneHat" | "SandstoneArrowhead" | "SandstoneArrow" | "ReedFlute" | "WoodenFlute" | "RawClayFlute" | "ClayFlute" | "BoneFlute" | "TinFlute" | "CopperFlute" | "WroughtIronFlute" | "IronFlute" | "BronzeFlute" | "StrippedLeather" | "ChickenEggshells" | "PenguinEggshells" | "Last">, [arg1: ActionArgument.Undefined, ActionArgument.Integer32]], import("../../player/Player").default, void, import("@wayward/game/game/entity/action/IAction").IActionUsable, [import("@wayward/game/game/item/IItem").IContainer, ItemType, (number | undefined)?]>;
15
- export declare const Unstack: Action<[ActionArgument.Container, import("../argument/ActionArgumentEnum").default<ItemType, "Bow" | "None" | "String" | "HideGlue" | "AnimalSkull" | "GraniteArrow" | "GraniteArrowhead" | "PileOfAsh" | "BarkLeggings" | "BarkShield" | "BarkTunic" | "Bone" | "Branch" | "CactusSpines" | "Charcoal" | "GraniteFlooring" | "CookedMeat" | "Earthworm" | "Feather" | "Fertilizer" | "WaterskinOfSeawater" | "FirePlough" | "BeggartickSeeds" | "Fossil" | "GoldCoins" | "GoldenChalice" | "GoldenRing" | "GoldShortSword" | "GrassSeeds" | "IronOre" | "WoodenDowels" | "Granite" | "LeafBedroll" | "Hide" | "Leaves" | "Limestone" | "Log" | "GraniteMortarAndPestle" | "ButtonMushrooms" | "Nopal" | "Peat" | "Sandstone" | "PileOfGravel" | "PileOfBeachSand" | "WoodenArrow" | "GraniteAxe" | "Bandage" | "WovenFabric" | "CactusNeedle" | "GraniteShovel" | "WoodenSpear" | "Suture" | "Raft" | "RawMeat" | "Raspberries" | "FlyAmanita" | "Rope" | "MapleSeeds" | "Badderlocks" | "SharpGlass" | "SharpGranite" | "Skullcap" | "SmoothGranite" | "Soil" | "GraniteSpear" | "Stones" | "GraniteWall" | "StrippedBark" | "Leather" | "Tannin" | "MilkThistleSeeds" | "TreeBark" | "HoneyFungus" | "ClematisVine" | "Twigs" | "Waterskin" | "WoodenPole" | "PeatBandage" | "BowDrill" | "FishingNet" | "RawCod" | "CookedCod" | "GraniteCampfire" | "VineWhip" | "PileOfSnow" | "BarkTorch" | "LitBarkTorch" | "HandDrill" | "SmallBag" | "Shale" | "SharpenedBone" | "Grindstone" | "RawFishSteak" | "CookedFishSteak" | "WaterskinOfDesalinatedWater" | "BoatPaddle" | "BullBoat" | "RefinedSand" | "Spyglass" | "Retort" | "RawClay" | "RawClayBlowpipe" | "ClayBlowpipe" | "LeatherBelt" | "LeatherTunic" | "LeatherBoots" | "LeatherCap" | "LeatherGorget" | "LeatherPants" | "LeatherGloves" | "GraniteFurnace" | "SandstoneKiln" | "IronTongs" | "Talc" | "TalcumPowder" | "WoodenSandCastFlask" | "Lens" | "PlantRoots" | "Lockpick" | "BoneNeedle" | "Pineapple" | "TatteredMap" | "Coal" | "SmeltedWroughtIron" | "LimestonePowder" | "SmeltedIron" | "Backpack" | "RottenMeat" | "GraniteHammer" | "RawChicken" | "CookedChicken" | "GraniteAnvil" | "WoodenChest" | "IronShortSword" | "IronBreastplate" | "IronBoots" | "IronHelmet" | "IronGorget" | "IronCuisses" | "IronGauntlets" | "IronHeater" | "SandstoneWall" | "SandstoneFlooring" | "SpiderSilk" | "AnimalFat" | "TallowTorch" | "ClayFlakes" | "GreenSand" | "OldInstructionalScroll" | "SlimeGelatin" | "SlimeGlue" | "CookedSpiderMeat" | "SpiderMeat" | "IronLockpick" | "RottingVegetation" | "Chives" | "IronHammer" | "IronSpear" | "IronShovel" | "IronDoubleAxe" | "IronPickaxe" | "Inkstick" | "Coconut" | "PalmLeaf" | "Offal" | "BoneFragments" | "LitPoleTorch" | "CottonBoll" | "CottonSeeds" | "CottonFabric" | "BonePole" | "Tourniquet" | "WroughtIronPickaxe" | "WroughtIronDoubleAxe" | "WroughtIronShovel" | "WroughtIronSpear" | "WroughtIronHammer" | "WroughtIronLockpick" | "WroughtIronShield" | "WroughtIronGauntlets" | "WroughtIronCuisses" | "WroughtIronGorget" | "WroughtIronHelmet" | "WroughtIronBoots" | "WroughtIronBreastplate" | "WroughtIronShortSword" | "WoodenWall" | "WoodenFlooring" | "WoodenDoor" | "FishingRod" | "MessageInABottle" | "CarbonPowder" | "PileOfCompost" | "FishGlue" | "WoodenShavings" | "GraniteDeadfall" | "Snare" | "WaterskinOfMedicinalWater" | "CharcoalBandage" | "WoodenTongs" | "WroughtIronTongs" | "SheetOfGlass" | "SolarStill" | "TinWaterStill" | "GraniteSundial" | "LitTallowTorch" | "Sinew" | "ShortBow" | "LongBow" | "CompositeBow" | "WaterskinOfPurifiedFreshWater" | "WaterskinOfUnpurifiedFreshWater" | "GlassBottle" | "Cork" | "GlassBottleOfSeawater" | "GlassBottleOfDesalinatedWater" | "GlassBottleOfMedicinalWater" | "GlassBottleOfPurifiedFreshWater" | "GlassBottleOfUnpurifiedFreshWater" | "WroughtIronArrow" | "IronArrow" | "GraniteBullet" | "WroughtIronBullet" | "IronBullet" | "LeatherQuiver" | "Ectoplasm" | "MagicalEssence" | "WoodenFence" | "CreatureIdol" | "CordedSling" | "LeatherSling" | "WroughtIronArrowhead" | "IronArrowhead" | "Hammock" | "CottonBedroll" | "FeatherBedroll" | "RawTaintedMeat" | "CookedTaintedMeat" | "GraniteKnife" | "RawBlindfish" | "CookedBlindfish" | "Pemmican" | "CookedPemmican" | "Sail" | "Sailboat" | "ChickenEgg" | "BoiledChickenEgg" | "SheafOfHay" | "Niter" | "Saltpeter" | "BlackPowder" | "FlintlockPistol" | "Giblets" | "ExplosiveTrap" | "SkeletalMageWand" | "RawClayJug" | "ClayJug" | "ClayJugOfSeawater" | "ClayJugOfDesalinatedWater" | "ClayJugOfMedicinalWater" | "ClayJugOfPurifiedFreshWater" | "ClayJugOfUnpurifiedFreshWater" | "RawClayBrick" | "ClayBrick" | "ClayWall" | "ClayFlooring" | "PineappleSeeds" | "RaspberrySeeds" | "PricklyPearSeeds" | "ClematisSeeds" | "PaperSheet" | "PaperMold" | "Beggarticks" | "MilkThistleFlowers" | "DrawnMap" | "TatteredClothShirt" | "TatteredClothTrousers" | "WoodenGate" | "PoisonIvyLeaves" | "PoisonIvySeeds" | "WroughtIronChest" | "IronChest" | "SwitchgrassSeeds" | "Apple" | "SpiderEggs" | "TailFeathers" | "AppleSeeds" | "VenomGland" | "OrnateWoodenChest" | "RollOfRedCarpet" | "OrnateCape" | "FireBladder" | "GoldenKey" | "WoodenShortSword" | "ClayKiln" | "ClayCampfire" | "ClayFurnace" | "CopperWaterStill" | "SandstoneCampfire" | "SandstoneFurnace" | "WroughtIronWaterStill" | "GraniteKiln" | "WroughtIronAnvil" | "IronAnvil" | "MageRobe" | "CrackedOrb" | "AnimalClaw" | "AnimalPelt" | "AnimalFur" | "Scales" | "SharkFin" | "RawReptileMeat" | "CookedReptileMeat" | "Tentacles" | "CookedTentacles" | "WormMeat" | "CookedWormMeat" | "GranitePickaxe" | "WroughtIronAxe" | "IronAxe" | "FertileSoil" | "GraniteHoe" | "WroughtIronHoe" | "IronHoe" | "LavaBeetleHelmet" | "SpruceCone" | "SpruceSeeds" | "SpruceNeedles" | "CypressCone" | "CypressSeeds" | "CypressLeaves" | "Lettuce" | "LettuceSeeds" | "ChiveSeeds" | "Potato" | "PotatoSeeds" | "Carrot" | "CarrotSeeds" | "CornEar" | "CornSeeds" | "Cucumber" | "CucumberSeeds" | "Tomato" | "TomatoSeeds" | "Pumpkin" | "PumpkinSeeds" | "PricklyPearFruit" | "SugarCaneStalks" | "SugarCaneSeeds" | "BushelOfWheat" | "Wheat" | "CookedPotato" | "CookedCornCob" | "BundleOfSwitchgrass" | "Cloak" | "WoodenMortarAndPestle" | "SandstoneMortarAndPestle" | "WroughtIronMortarAndPestle" | "IronMortarAndPestle" | "RawClayMortarAndPestle" | "ClayMortarAndPestle" | "CopperOre" | "SmeltedCopper" | "CopperPickaxe" | "CopperDoubleAxe" | "CopperShovel" | "CopperSpear" | "CopperHammer" | "CopperLockpick" | "CopperBuckler" | "CopperGauntlets" | "CopperGreaves" | "CopperGorget" | "CopperHelmet" | "CopperBoots" | "CopperCuirass" | "CopperShortSword" | "CopperTongs" | "CopperArrow" | "CopperBullet" | "CopperArrowhead" | "CopperChest" | "CopperAnvil" | "CopperAxe" | "CopperHoe" | "CopperMortarAndPestle" | "WaterskinOfGoatMilk" | "ClayJugOfGoatMilk" | "GlassBottleOfGoatMilk" | "Obsidian" | "OrnateBlueBook" | "Journal" | "MossCoveredBook" | "GildedRedBook" | "ArrowShaft" | "SlitherSucker" | "AberrantSlitherSucker" | "StrawHat" | "BlackplateSabatons" | "BlackplateBreastplate" | "BlackplateGauntlets" | "BlackplateGorget" | "BlackplateGreaves" | "BlackplateHelmet" | "DeathKnightAxe" | "Macuahuitl" | "ObsidianArrow" | "ObsidianArrowhead" | "ObsidianAxe" | "ObsidianKnife" | "ObsidianShovel" | "ObsidianSpear" | "TumbleweedSeeds" | "CoconutHusk" | "PeeledCoconut" | "CoconutMeat" | "CoconutContainerOfCoconutWater" | "CoconutContainer" | "CoconutContainerOfSeawater" | "CoconutContainerOfDesalinatedWater" | "CoconutContainerOfMedicinalWater" | "CoconutContainerOfPurifiedFreshWater" | "CoconutContainerOfUnpurifiedFreshWater" | "CoconutContainerOfGoatMilk" | "OldEducationalScroll" | "StrippedHide" | "ClaySandCastFlask" | "SandstoneSandCastFlask" | "GraniteSandCastFlask" | "BoneGlue" | "CutHide" | "BoneMeal" | "PileOfDesertSand" | "JoshuaTreeLeaves" | "JoshuaTreeFruit" | "JoshuaTreeSeeds" | "CookedJoshuaTreeFruit" | "JoshuaTreeFlowers" | "SaguaroCactusFruit" | "SaguaroCactusSeeds" | "SaguaroCactusChunk" | "GraniteWell" | "SandstoneWell" | "ClayWell" | "AloeVeraLeaves" | "AloeVeraSeeds" | "DeadScorpion" | "DeadAberrantScorpion" | "CookedScorpion" | "CookedAberrantScorpion" | "ScorpionStinger" | "CopperBakingTray" | "WroughtIronBakingTray" | "IronBakingTray" | "Flour" | "Dough" | "Hardtack" | "HitchingPost" | "ShreddedPaper" | "RawMudskipper" | "RawAberrantMudskipper" | "CookedMudskipper" | "CookedAberrantMudskipper" | "RawRedSnapper" | "CookedRedSnapper" | "RawWalleye" | "CookedWalleye" | "WoodenShield" | "CopperRefinementTools" | "WroughtIronRefinementTools" | "IronRefinementTools" | "ScaleBelt" | "ScaleVest" | "ScaleBoots" | "ScaleCap" | "ScaleBevor" | "ScaleLeggings" | "ScaleGloves" | "CookedJoshuaTreeFlowers" | "SaguaroCactusRibs" | "BladesOfGrass" | "AnimalDroppings" | "AnimalDung" | "Guano" | "Tallow" | "TallowCandle" | "LitTallowCandle" | "WispDust" | "MagicalAspect" | "GoldenSextant" | "RawChoppedFish" | "CookedChoppedFish" | "CookedFishKebab" | "AshCement" | "AshCementBrick" | "AshCementFlooring" | "AshCementWall" | "IceShard" | "PenguinEgg" | "BoiledPenguinEgg" | "RawPenguinMeat" | "CookedPenguinMeat" | "Crowberries" | "CookedCrowberries" | "CrowberrySeeds" | "Winterberries" | "WinterberrySeeds" | "ArcticPoppies" | "ArcticPoppySeeds" | "PirateHat" | "AloeVeraBandage" | "SharkTooth" | "CopperKnife" | "WroughtIronKnife" | "IronKnife" | "TinOre" | "SmeltedTin" | "TinPickaxe" | "TinDoubleAxe" | "TinShovel" | "TinSpear" | "TinHammer" | "TinLockpick" | "TinShield" | "TinGloves" | "TinChausses" | "TinBevor" | "TinHelmet" | "TinFootgear" | "TinCuirass" | "TinShortSword" | "TinTongs" | "TinArrow" | "TinBullet" | "TinArrowhead" | "TinChest" | "TinAnvil" | "TinAxe" | "TinHoe" | "TinMortarAndPestle" | "TinBakingTray" | "TinRefinementTools" | "TinKnife" | "SmeltedBronze" | "BronzePickaxe" | "BronzeDoubleAxe" | "BronzeShovel" | "BronzeSpear" | "BronzeHammer" | "BronzeLockpick" | "BronzeKiteShield" | "BronzeGauntlets" | "BronzeGreaves" | "BronzeBevor" | "BronzeHelmet" | "BronzeBoots" | "BronzeChestArmor" | "BronzeShortSword" | "BronzeTongs" | "BronzeArrow" | "BronzeBullet" | "BronzeArrowhead" | "BronzeChest" | "BronzeAnvil" | "BronzeAxe" | "BronzeHoe" | "BronzeMortarAndPestle" | "BronzeBakingTray" | "BronzeRefinementTools" | "BronzeKnife" | "IceBrick" | "SnowBrick" | "IceWall" | "IceFlooring" | "SnowWall" | "SnowFlooring" | "CaliginousScrap" | "MagicalExtract" | "ShimmeringFibers" | "MagicalTwine" | "SandstoneHammer" | "SandstoneBullet" | "SandstoneAnvil" | "SnowScarecrow" | "FrozenFlesh" | "AnimalTusk" | "WhitePineCone" | "WhitePineSeeds" | "WhitePineNeedles" | "FurCoat" | "FurMittens" | "FurBoots" | "BirdDroppings" | "HardenedCoil" | "MagicalBinding" | "ArmoredScales" | "RawPangolinMeat" | "CookedPangolinMeat" | "ArmoredScaleBelt" | "ArmoredScaleVest" | "ArmoredScaleBoots" | "ArmoredScaleCrown" | "ArmoredScaleBevor" | "ArmoredScaleCuisses" | "ArmoredScaleGloves" | "TinNeedle" | "CopperNeedle" | "WroughtIronNeedle" | "IronNeedle" | "BronzeNeedle" | "TuftsOfTanglehead" | "TangleheadSeeds" | "WispInAGlassBottle" | "AberrantWispInAGlassBottle" | "WispInAClayJug" | "AberrantWispInAClayJug" | "WispInACoconutContainer" | "AberrantWispInACoconutContainer" | "WispInAWaterskin" | "AberrantWispInAWaterskin" | "StrawScarecrow" | "CactusScarecrow" | "ClothShirt" | "ClothTrousers" | "UnripePapaya" | "Papaya" | "PapayaSeeds" | "PalapalaiFrond" | "PalapalaiSpores" | "ButtonMushroomSpores" | "FlyAmanitaSpores" | "BrambleCrown" | "DarkBrambleCrown" | "Cotton" | "WaterskinOfSwampWater" | "GlassBottleOfSwampWater" | "ClayJugOfSwampWater" | "CoconutContainerOfSwampWater" | "WaterskinOfFilteredWater" | "GlassBottleOfFilteredWater" | "ClayJugOfFilteredWater" | "CoconutContainerOfFilteredWater" | "ClayFilter" | "SandstoneAxe" | "SandstoneShovel" | "SharpSandstone" | "SmoothSandstone" | "SandstoneSpear" | "SandstoneKnife" | "SandstonePickaxe" | "SandstoneHoe" | "SandstoneDeadfall" | "SandstoneSundial" | "WoodenPlank" | "WoodenWheel" | "WoodenAxle" | "WoodenMinecart" | "WoodenRail" | "WoodenTrack" | "TinWheel" | "TinAxle" | "TinMinecart" | "TinRail" | "TinTrack" | "CopperWheel" | "CopperAxle" | "CopperMinecart" | "CopperRail" | "CopperTrack" | "WroughtIronWheel" | "WroughtIronAxle" | "WroughtIronMinecart" | "WroughtIronRail" | "WroughtIronTrack" | "IronWheel" | "IronAxle" | "IronMinecart" | "IronRail" | "IronTrack" | "BronzeWheel" | "BronzeAxle" | "BronzeMinecart" | "BronzeRail" | "BronzeTrack" | "BasaltArrow" | "BasaltArrowhead" | "Basalt" | "BasaltMortarAndPestle" | "BasaltAxe" | "BasaltShovel" | "SharpBasalt" | "SmoothBasalt" | "BasaltSpear" | "BasaltFlooring" | "BasaltWall" | "BasaltCampfire" | "BasaltFurnace" | "BasaltHammer" | "BasaltAnvil" | "BasaltDeadfall" | "IronWaterStill" | "BasaltSundial" | "BasaltBullet" | "BasaltKnife" | "BasaltKiln" | "BasaltPickaxe" | "BasaltHoe" | "BasaltSandCastFlask" | "BasaltWell" | "WoodenTrackGate" | "MoldyScroll" | "MysteriousParchment" | "MagicalInscription" | "CattailLeaves" | "CattailShoots" | "CattailFlowers" | "CattailSeeds" | "CobblestoneFlooring" | "WaterLilies" | "Mud" | "SpikerushSheaths" | "SpikerushSeeds" | "WoodenBookcase" | "GraniteLighthouse" | "SandstoneLighthouse" | "ClayLighthouse" | "BasaltLighthouse" | "WoodenCage" | "FullWoodenCage" | "TinCage" | "FullTinCage" | "CopperCage" | "FullCopperCage" | "WroughtIronCage" | "FullWroughtIronCage" | "IronCage" | "FullIronCage" | "BronzeCage" | "FullBronzeCage" | "Amber" | "Tourmaline" | "Topaz" | "Opal" | "Sapphire" | "WoodGolemFigure" | "ClayGolemFigure" | "GraniteGolemFigure" | "SandstoneGolemFigure" | "BasaltGolemFigure" | "AberrantWoodGolemFigure" | "AberrantClayGolemFigure" | "AberrantGraniteGolemFigure" | "AberrantSandstoneGolemFigure" | "AberrantBasaltGolemFigure" | "GraniteDripstone" | "SandstoneDripstone" | "BasaltDripstone" | "ClayDripstone" | "BronzeWaterStill" | "ArmorStand" | "RuneOfEvil" | "RuneOfChaos" | "RuneOfGood" | "GraniteAltar" | "WoodenWheelbarrow" | "TinWheelbarrow" | "CopperWheelbarrow" | "WroughtIronWheelbarrow" | "IronWheelbarrow" | "BronzeWheelbarrow" | "GraniteCrucible" | "SandstoneCrucible" | "BasaltCrucible" | "RawClayCrucible" | "ClayCrucible" | "SandstoneAltar" | "BasaltAltar" | "ClayAltar" | "PineResin" | "SpruceResin" | "CypressResin" | "Pitch" | "PitchGlue" | "MagicalOrb" | "RawAberrantCod" | "CookedAberrantCod" | "RawAberrantBlindfish" | "CookedAberrantBlindfish" | "RawAberrantRedSnapper" | "CookedAberrantRedSnapper" | "RawAberrantWalleye" | "CookedAberrantWalleye" | "FishBones" | "AnimalCartilage" | "GelatinPowder" | "Gelatin" | "Aspic" | "FruitCocktail" | "VegetableTerrine" | "TatteredClothBandana" | "ClothBandana" | "RustedScimitar" | "TricorneHat" | "SandstoneArrowhead" | "SandstoneArrow" | "ReedFlute" | "WoodenFlute" | "RawClayFlute" | "ClayFlute" | "BoneFlute" | "TinFlute" | "CopperFlute" | "WroughtIronFlute" | "IronFlute" | "BronzeFlute" | "StrippedLeather" | "ChickenEggshells" | "PenguinEggshells" | "Last">, [arg1: ActionArgument.Undefined, ActionArgument.Integer32]], import("../../player/Player").default, void, import("@wayward/game/game/entity/action/IAction").IActionUsable, [import("@wayward/game/game/item/IItem").IContainer, ItemType, (number | undefined)?]>;
14
+ export declare const Stack: Action<[ActionArgument.Container, import("../argument/ActionArgumentEnum").default<ItemType, "Bow" | "None" | "String" | "HideGlue" | "AnimalSkull" | "GraniteArrow" | "GraniteArrowhead" | "PileOfAsh" | "BarkLeggings" | "BarkShield" | "BarkTunic" | "Bone" | "Branch" | "CactusSpines" | "Charcoal" | "GraniteFlooring" | "CookedMeat" | "Earthworm" | "Feather" | "Fertilizer" | "WaterskinOfSeawater" | "FirePlough" | "BeggartickSeeds" | "Fossil" | "GoldCoins" | "GoldenChalice" | "GoldenRing" | "GoldShortSword" | "GrassSeeds" | "IronOre" | "WoodenDowels" | "Granite" | "LeafBedroll" | "Hide" | "Leaves" | "Limestone" | "Log" | "GraniteMortarAndPestle" | "ButtonMushrooms" | "Nopal" | "Peat" | "Sandstone" | "PileOfGravel" | "PileOfBeachSand" | "WoodenArrow" | "GraniteAxe" | "Bandage" | "WovenFabric" | "CactusNeedle" | "GraniteShovel" | "WoodenSpear" | "Suture" | "Raft" | "RawMeat" | "Raspberries" | "FlyAmanita" | "Rope" | "MapleSeeds" | "Badderlocks" | "SharpGlass" | "SharpGranite" | "Skullcap" | "SmoothGranite" | "Soil" | "GraniteSpear" | "Stones" | "GraniteWall" | "StrippedBark" | "Leather" | "Tannin" | "MilkThistleSeeds" | "TreeBark" | "HoneyFungus" | "ClematisVine" | "Twigs" | "Waterskin" | "WoodenPole" | "PeatBandage" | "BowDrill" | "FishingNet" | "RawCod" | "CookedCod" | "GraniteCampfire" | "VineWhip" | "PileOfSnow" | "BarkTorch" | "LitBarkTorch" | "HandDrill" | "SmallBag" | "Shale" | "SharpenedBone" | "Grindstone" | "RawFishSteak" | "CookedFishSteak" | "WaterskinOfDesalinatedWater" | "BoatPaddle" | "BullBoat" | "RefinedSand" | "Spyglass" | "Retort" | "RawClay" | "RawClayBlowpipe" | "ClayBlowpipe" | "LeatherBelt" | "LeatherTunic" | "LeatherBoots" | "LeatherCap" | "LeatherGorget" | "LeatherPants" | "LeatherGloves" | "GraniteFurnace" | "SandstoneKiln" | "IronTongs" | "Talc" | "TalcumPowder" | "WoodenSandCastFlask" | "Lens" | "PlantRoots" | "Lockpick" | "BoneNeedle" | "Pineapple" | "TatteredMap" | "Coal" | "SmeltedWroughtIron" | "LimestonePowder" | "SmeltedIron" | "Backpack" | "RottenMeat" | "GraniteHammer" | "RawChicken" | "CookedChicken" | "GraniteAnvil" | "WoodenChest" | "IronShortSword" | "IronBreastplate" | "IronBoots" | "IronHelmet" | "IronGorget" | "IronCuisses" | "IronGauntlets" | "IronHeater" | "SandstoneWall" | "SandstoneFlooring" | "SpiderSilk" | "AnimalFat" | "TallowTorch" | "ClayFlakes" | "GreenSand" | "OldInstructionalScroll" | "SlimeGelatin" | "SlimeGlue" | "CookedSpiderMeat" | "SpiderMeat" | "IronLockpick" | "RottingVegetation" | "Chives" | "IronHammer" | "IronSpear" | "IronShovel" | "IronDoubleAxe" | "IronPickaxe" | "Inkstick" | "Coconut" | "PalmLeaf" | "Offal" | "BoneFragments" | "LitPoleTorch" | "CottonBoll" | "CottonSeeds" | "CottonFabric" | "BonePole" | "Tourniquet" | "WroughtIronPickaxe" | "WroughtIronDoubleAxe" | "WroughtIronShovel" | "WroughtIronSpear" | "WroughtIronHammer" | "WroughtIronLockpick" | "WroughtIronShield" | "WroughtIronGauntlets" | "WroughtIronCuisses" | "WroughtIronGorget" | "WroughtIronHelmet" | "WroughtIronBoots" | "WroughtIronBreastplate" | "WroughtIronShortSword" | "WoodenWall" | "WoodenFlooring" | "WoodenDoor" | "FishingRod" | "MessageInABottle" | "CarbonPowder" | "PileOfCompost" | "FishGlue" | "WoodenShavings" | "GraniteDeadfall" | "Snare" | "WaterskinOfMedicinalWater" | "CharcoalBandage" | "WoodenTongs" | "WroughtIronTongs" | "SheetOfGlass" | "SolarStill" | "TinWaterStill" | "GraniteSundial" | "LitTallowTorch" | "Sinew" | "ShortBow" | "LongBow" | "CompositeBow" | "WaterskinOfPurifiedFreshWater" | "WaterskinOfUnpurifiedFreshWater" | "GlassBottle" | "Cork" | "GlassBottleOfSeawater" | "GlassBottleOfDesalinatedWater" | "GlassBottleOfMedicinalWater" | "GlassBottleOfPurifiedFreshWater" | "GlassBottleOfUnpurifiedFreshWater" | "WroughtIronArrow" | "IronArrow" | "GraniteBullet" | "WroughtIronBullet" | "IronBullet" | "LeatherQuiver" | "Ectoplasm" | "MagicalEssence" | "WoodenFence" | "CreatureIdol" | "CordedSling" | "LeatherSling" | "WroughtIronArrowhead" | "IronArrowhead" | "Hammock" | "CottonBedroll" | "FeatherBedroll" | "RawTaintedMeat" | "CookedTaintedMeat" | "GraniteKnife" | "RawBlindfish" | "CookedBlindfish" | "Pemmican" | "CookedPemmican" | "Sail" | "Sailboat" | "ChickenEgg" | "BoiledChickenEgg" | "SheafOfHay" | "Niter" | "Saltpeter" | "BlackPowder" | "FlintlockPistol" | "Giblets" | "ExplosiveTrap" | "SkeletalMageWand" | "RawClayJug" | "ClayJug" | "ClayJugOfSeawater" | "ClayJugOfDesalinatedWater" | "ClayJugOfMedicinalWater" | "ClayJugOfPurifiedFreshWater" | "ClayJugOfUnpurifiedFreshWater" | "RawClayBrick" | "ClayBrick" | "ClayWall" | "ClayFlooring" | "PineappleSeeds" | "RaspberrySeeds" | "PricklyPearSeeds" | "ClematisSeeds" | "PaperSheet" | "PaperMold" | "Beggarticks" | "MilkThistleFlowers" | "DrawnMap" | "TatteredClothShirt" | "TatteredClothTrousers" | "WoodenGate" | "PoisonIvyLeaves" | "PoisonIvySeeds" | "WroughtIronChest" | "IronChest" | "SwitchgrassSeeds" | "Apple" | "SpiderEggs" | "TailFeathers" | "AppleSeeds" | "VenomGland" | "OrnateWoodenChest" | "RollOfRedCarpet" | "OrnateCape" | "FireBladder" | "GoldenKey" | "WoodenShortSword" | "ClayKiln" | "ClayCampfire" | "ClayFurnace" | "CopperWaterStill" | "SandstoneCampfire" | "SandstoneFurnace" | "WroughtIronWaterStill" | "GraniteKiln" | "WroughtIronAnvil" | "IronAnvil" | "MageRobe" | "CrackedOrb" | "AnimalClaw" | "AnimalPelt" | "AnimalFur" | "Scales" | "SharkFin" | "RawReptileMeat" | "CookedReptileMeat" | "Tentacles" | "CookedTentacles" | "WormMeat" | "CookedWormMeat" | "GranitePickaxe" | "WroughtIronAxe" | "IronAxe" | "FertileSoil" | "GraniteHoe" | "WroughtIronHoe" | "IronHoe" | "LavaBeetleHelmet" | "SpruceCone" | "SpruceSeeds" | "SpruceNeedles" | "CypressCone" | "CypressSeeds" | "CypressLeaves" | "Lettuce" | "LettuceSeeds" | "ChiveSeeds" | "Potato" | "PotatoSeeds" | "Carrot" | "CarrotSeeds" | "CornEar" | "CornSeeds" | "Cucumber" | "CucumberSeeds" | "Tomato" | "TomatoSeeds" | "Pumpkin" | "PumpkinSeeds" | "PricklyPearFruit" | "SugarCaneStalks" | "SugarCaneSeeds" | "BushelOfWheat" | "Wheat" | "CookedPotato" | "CookedCornCob" | "BundleOfSwitchgrass" | "Cloak" | "WoodenMortarAndPestle" | "SandstoneMortarAndPestle" | "WroughtIronMortarAndPestle" | "IronMortarAndPestle" | "RawClayMortarAndPestle" | "ClayMortarAndPestle" | "CopperOre" | "SmeltedCopper" | "CopperPickaxe" | "CopperDoubleAxe" | "CopperShovel" | "CopperSpear" | "CopperHammer" | "CopperLockpick" | "CopperBuckler" | "CopperGauntlets" | "CopperGreaves" | "CopperGorget" | "CopperHelmet" | "CopperBoots" | "CopperCuirass" | "CopperShortSword" | "CopperTongs" | "CopperArrow" | "CopperBullet" | "CopperArrowhead" | "CopperChest" | "CopperAnvil" | "CopperAxe" | "CopperHoe" | "CopperMortarAndPestle" | "WaterskinOfGoatMilk" | "ClayJugOfGoatMilk" | "GlassBottleOfGoatMilk" | "Obsidian" | "OrnateBlueBook" | "Journal" | "MossCoveredBook" | "GildedRedBook" | "ArrowShaft" | "SlitherSucker" | "AberrantSlitherSucker" | "StrawHat" | "BlackplateSabatons" | "BlackplateBreastplate" | "BlackplateGauntlets" | "BlackplateGorget" | "BlackplateGreaves" | "BlackplateHelmet" | "DeathKnightAxe" | "Macuahuitl" | "ObsidianArrow" | "ObsidianArrowhead" | "ObsidianAxe" | "ObsidianKnife" | "ObsidianShovel" | "ObsidianSpear" | "TumbleweedSeeds" | "CoconutHusk" | "PeeledCoconut" | "CoconutMeat" | "CoconutContainerOfCoconutWater" | "CoconutContainer" | "CoconutContainerOfSeawater" | "CoconutContainerOfDesalinatedWater" | "CoconutContainerOfMedicinalWater" | "CoconutContainerOfPurifiedFreshWater" | "CoconutContainerOfUnpurifiedFreshWater" | "CoconutContainerOfGoatMilk" | "OldEducationalScroll" | "StrippedHide" | "ClaySandCastFlask" | "SandstoneSandCastFlask" | "GraniteSandCastFlask" | "BoneGlue" | "CutHide" | "BoneMeal" | "PileOfDesertSand" | "JoshuaTreeLeaves" | "JoshuaTreeFruit" | "JoshuaTreeSeeds" | "CookedJoshuaTreeFruit" | "JoshuaTreeFlowers" | "SaguaroCactusFruit" | "SaguaroCactusSeeds" | "SaguaroCactusChunk" | "GraniteWell" | "SandstoneWell" | "ClayWell" | "AloeVeraLeaves" | "AloeVeraSeeds" | "DeadScorpion" | "DeadAberrantScorpion" | "CookedScorpion" | "CookedAberrantScorpion" | "ScorpionStinger" | "CopperBakingTray" | "WroughtIronBakingTray" | "IronBakingTray" | "Flour" | "Dough" | "Hardtack" | "HitchingPost" | "ShreddedPaper" | "RawMudskipper" | "RawAberrantMudskipper" | "CookedMudskipper" | "CookedAberrantMudskipper" | "RawRedSnapper" | "CookedRedSnapper" | "RawWalleye" | "CookedWalleye" | "WoodenShield" | "CopperRefinementTools" | "WroughtIronRefinementTools" | "IronRefinementTools" | "ScaleBelt" | "ScaleVest" | "ScaleBoots" | "ScaleCap" | "ScaleBevor" | "ScaleLeggings" | "ScaleGloves" | "CookedJoshuaTreeFlowers" | "SaguaroCactusRibs" | "BladesOfGrass" | "AnimalDroppings" | "AnimalDung" | "Guano" | "Tallow" | "TallowCandle" | "LitTallowCandle" | "WispDust" | "MagicalAspect" | "GoldenSextant" | "RawChoppedFish" | "CookedChoppedFish" | "CookedFishKebab" | "AshCement" | "AshCementBrick" | "AshCementFlooring" | "AshCementWall" | "IceShard" | "PenguinEgg" | "BoiledPenguinEgg" | "RawPenguinMeat" | "CookedPenguinMeat" | "Crowberries" | "CookedCrowberries" | "CrowberrySeeds" | "Winterberries" | "WinterberrySeeds" | "ArcticPoppies" | "ArcticPoppySeeds" | "PirateHat" | "AloeVeraBandage" | "SharkTooth" | "CopperKnife" | "WroughtIronKnife" | "IronKnife" | "TinOre" | "SmeltedTin" | "TinPickaxe" | "TinDoubleAxe" | "TinShovel" | "TinSpear" | "TinHammer" | "TinLockpick" | "TinShield" | "TinGloves" | "TinChausses" | "TinBevor" | "TinHelmet" | "TinFootgear" | "TinCuirass" | "TinShortSword" | "TinTongs" | "TinArrow" | "TinBullet" | "TinArrowhead" | "TinChest" | "TinAnvil" | "TinAxe" | "TinHoe" | "TinMortarAndPestle" | "TinBakingTray" | "TinRefinementTools" | "TinKnife" | "SmeltedBronze" | "BronzePickaxe" | "BronzeDoubleAxe" | "BronzeShovel" | "BronzeSpear" | "BronzeHammer" | "BronzeLockpick" | "BronzeKiteShield" | "BronzeGauntlets" | "BronzeGreaves" | "BronzeBevor" | "BronzeHelmet" | "BronzeBoots" | "BronzeChestArmor" | "BronzeShortSword" | "BronzeTongs" | "BronzeArrow" | "BronzeBullet" | "BronzeArrowhead" | "BronzeChest" | "BronzeAnvil" | "BronzeAxe" | "BronzeHoe" | "BronzeMortarAndPestle" | "BronzeBakingTray" | "BronzeRefinementTools" | "BronzeKnife" | "IceBrick" | "SnowBrick" | "IceWall" | "IceFlooring" | "SnowWall" | "SnowFlooring" | "CaliginousScrap" | "MagicalExtract" | "ShimmeringFibers" | "MagicalTwine" | "SandstoneHammer" | "SandstoneBullet" | "SandstoneAnvil" | "SnowScarecrow" | "FrozenFlesh" | "AnimalTusk" | "WhitePineCone" | "WhitePineSeeds" | "WhitePineNeedles" | "FurCoat" | "FurMittens" | "FurBoots" | "BirdDroppings" | "HardenedCoil" | "MagicalBinding" | "ArmoredScales" | "RawPangolinMeat" | "CookedPangolinMeat" | "ArmoredScaleBelt" | "ArmoredScaleVest" | "ArmoredScaleBoots" | "ArmoredScaleCrown" | "ArmoredScaleBevor" | "ArmoredScaleCuisses" | "ArmoredScaleGloves" | "TinNeedle" | "CopperNeedle" | "WroughtIronNeedle" | "IronNeedle" | "BronzeNeedle" | "TuftsOfTanglehead" | "TangleheadSeeds" | "WispInAGlassBottle" | "AberrantWispInAGlassBottle" | "WispInAClayJug" | "AberrantWispInAClayJug" | "WispInACoconutContainer" | "AberrantWispInACoconutContainer" | "WispInAWaterskin" | "AberrantWispInAWaterskin" | "StrawScarecrow" | "CactusScarecrow" | "ClothShirt" | "ClothTrousers" | "UnripePapaya" | "Papaya" | "PapayaSeeds" | "PalapalaiFrond" | "PalapalaiSpores" | "ButtonMushroomSpores" | "FlyAmanitaSpores" | "BrambleCrown" | "DarkBrambleCrown" | "Cotton" | "WaterskinOfSwampWater" | "GlassBottleOfSwampWater" | "ClayJugOfSwampWater" | "CoconutContainerOfSwampWater" | "WaterskinOfFilteredWater" | "GlassBottleOfFilteredWater" | "ClayJugOfFilteredWater" | "CoconutContainerOfFilteredWater" | "ClayFilter" | "SandstoneAxe" | "SandstoneShovel" | "SharpSandstone" | "SmoothSandstone" | "SandstoneSpear" | "SandstoneKnife" | "SandstonePickaxe" | "SandstoneHoe" | "SandstoneDeadfall" | "SandstoneSundial" | "WoodenPlank" | "WoodenWheel" | "WoodenAxle" | "WoodenMinecart" | "WoodenRail" | "WoodenTrack" | "TinWheel" | "TinAxle" | "TinMinecart" | "TinRail" | "TinTrack" | "CopperWheel" | "CopperAxle" | "CopperMinecart" | "CopperRail" | "CopperTrack" | "WroughtIronWheel" | "WroughtIronAxle" | "WroughtIronMinecart" | "WroughtIronRail" | "WroughtIronTrack" | "IronWheel" | "IronAxle" | "IronMinecart" | "IronRail" | "IronTrack" | "BronzeWheel" | "BronzeAxle" | "BronzeMinecart" | "BronzeRail" | "BronzeTrack" | "BasaltArrow" | "BasaltArrowhead" | "Basalt" | "BasaltMortarAndPestle" | "BasaltAxe" | "BasaltShovel" | "SharpBasalt" | "SmoothBasalt" | "BasaltSpear" | "BasaltFlooring" | "BasaltWall" | "BasaltCampfire" | "BasaltFurnace" | "BasaltHammer" | "BasaltAnvil" | "BasaltDeadfall" | "IronWaterStill" | "BasaltSundial" | "BasaltBullet" | "BasaltKnife" | "BasaltKiln" | "BasaltPickaxe" | "BasaltHoe" | "BasaltSandCastFlask" | "BasaltWell" | "WoodenTrackGate" | "MoldyScroll" | "MysteriousParchment" | "MagicalInscription" | "CattailLeaves" | "CattailShoots" | "CattailFlowers" | "CattailSeeds" | "CobblestoneFlooring" | "WaterLilies" | "Mud" | "SpikerushSheaths" | "SpikerushSeeds" | "WoodenBookcase" | "GraniteLighthouse" | "SandstoneLighthouse" | "ClayLighthouse" | "BasaltLighthouse" | "WoodenCage" | "FullWoodenCage" | "TinCage" | "FullTinCage" | "CopperCage" | "FullCopperCage" | "WroughtIronCage" | "FullWroughtIronCage" | "IronCage" | "FullIronCage" | "BronzeCage" | "FullBronzeCage" | "Amber" | "Tourmaline" | "Topaz" | "Opal" | "Sapphire" | "WoodGolemFigure" | "ClayGolemFigure" | "GraniteGolemFigure" | "SandstoneGolemFigure" | "BasaltGolemFigure" | "AberrantWoodGolemFigure" | "AberrantClayGolemFigure" | "AberrantGraniteGolemFigure" | "AberrantSandstoneGolemFigure" | "AberrantBasaltGolemFigure" | "GraniteDripstone" | "SandstoneDripstone" | "BasaltDripstone" | "ClayDripstone" | "BronzeWaterStill" | "ArmorStand" | "RuneOfEvil" | "RuneOfChaos" | "RuneOfGood" | "GraniteAltar" | "WoodenWheelbarrow" | "TinWheelbarrow" | "CopperWheelbarrow" | "WroughtIronWheelbarrow" | "IronWheelbarrow" | "BronzeWheelbarrow" | "GraniteCrucible" | "SandstoneCrucible" | "BasaltCrucible" | "RawClayCrucible" | "ClayCrucible" | "SandstoneAltar" | "BasaltAltar" | "ClayAltar" | "PineResin" | "SpruceResin" | "CypressResin" | "Pitch" | "PitchGlue" | "MagicalOrb" | "RawAberrantCod" | "CookedAberrantCod" | "RawAberrantBlindfish" | "CookedAberrantBlindfish" | "RawAberrantRedSnapper" | "CookedAberrantRedSnapper" | "RawAberrantWalleye" | "CookedAberrantWalleye" | "FishBones" | "AnimalCartilage" | "GelatinPowder" | "Gelatin" | "Aspic" | "FruitCocktail" | "VegetableTerrine" | "TatteredClothBandana" | "ClothBandana" | "RustedScimitar" | "TricorneHat" | "SandstoneArrowhead" | "SandstoneArrow" | "ReedFlute" | "WoodenFlute" | "RawClayFlute" | "ClayFlute" | "BoneFlute" | "TinFlute" | "CopperFlute" | "WroughtIronFlute" | "IronFlute" | "BronzeFlute" | "StrippedLeather" | "ChickenEggshells" | "PenguinEggshells" | "MagicalMote" | "Last">, [arg1: ActionArgument.Undefined, ActionArgument.Integer32]], import("../../player/Player").default, void, import("@wayward/game/game/entity/action/IAction").IActionUsable, [import("@wayward/game/game/item/IItem").IContainer, ItemType, (number | undefined)?]>;
15
+ export declare const Unstack: Action<[ActionArgument.Container, import("../argument/ActionArgumentEnum").default<ItemType, "Bow" | "None" | "String" | "HideGlue" | "AnimalSkull" | "GraniteArrow" | "GraniteArrowhead" | "PileOfAsh" | "BarkLeggings" | "BarkShield" | "BarkTunic" | "Bone" | "Branch" | "CactusSpines" | "Charcoal" | "GraniteFlooring" | "CookedMeat" | "Earthworm" | "Feather" | "Fertilizer" | "WaterskinOfSeawater" | "FirePlough" | "BeggartickSeeds" | "Fossil" | "GoldCoins" | "GoldenChalice" | "GoldenRing" | "GoldShortSword" | "GrassSeeds" | "IronOre" | "WoodenDowels" | "Granite" | "LeafBedroll" | "Hide" | "Leaves" | "Limestone" | "Log" | "GraniteMortarAndPestle" | "ButtonMushrooms" | "Nopal" | "Peat" | "Sandstone" | "PileOfGravel" | "PileOfBeachSand" | "WoodenArrow" | "GraniteAxe" | "Bandage" | "WovenFabric" | "CactusNeedle" | "GraniteShovel" | "WoodenSpear" | "Suture" | "Raft" | "RawMeat" | "Raspberries" | "FlyAmanita" | "Rope" | "MapleSeeds" | "Badderlocks" | "SharpGlass" | "SharpGranite" | "Skullcap" | "SmoothGranite" | "Soil" | "GraniteSpear" | "Stones" | "GraniteWall" | "StrippedBark" | "Leather" | "Tannin" | "MilkThistleSeeds" | "TreeBark" | "HoneyFungus" | "ClematisVine" | "Twigs" | "Waterskin" | "WoodenPole" | "PeatBandage" | "BowDrill" | "FishingNet" | "RawCod" | "CookedCod" | "GraniteCampfire" | "VineWhip" | "PileOfSnow" | "BarkTorch" | "LitBarkTorch" | "HandDrill" | "SmallBag" | "Shale" | "SharpenedBone" | "Grindstone" | "RawFishSteak" | "CookedFishSteak" | "WaterskinOfDesalinatedWater" | "BoatPaddle" | "BullBoat" | "RefinedSand" | "Spyglass" | "Retort" | "RawClay" | "RawClayBlowpipe" | "ClayBlowpipe" | "LeatherBelt" | "LeatherTunic" | "LeatherBoots" | "LeatherCap" | "LeatherGorget" | "LeatherPants" | "LeatherGloves" | "GraniteFurnace" | "SandstoneKiln" | "IronTongs" | "Talc" | "TalcumPowder" | "WoodenSandCastFlask" | "Lens" | "PlantRoots" | "Lockpick" | "BoneNeedle" | "Pineapple" | "TatteredMap" | "Coal" | "SmeltedWroughtIron" | "LimestonePowder" | "SmeltedIron" | "Backpack" | "RottenMeat" | "GraniteHammer" | "RawChicken" | "CookedChicken" | "GraniteAnvil" | "WoodenChest" | "IronShortSword" | "IronBreastplate" | "IronBoots" | "IronHelmet" | "IronGorget" | "IronCuisses" | "IronGauntlets" | "IronHeater" | "SandstoneWall" | "SandstoneFlooring" | "SpiderSilk" | "AnimalFat" | "TallowTorch" | "ClayFlakes" | "GreenSand" | "OldInstructionalScroll" | "SlimeGelatin" | "SlimeGlue" | "CookedSpiderMeat" | "SpiderMeat" | "IronLockpick" | "RottingVegetation" | "Chives" | "IronHammer" | "IronSpear" | "IronShovel" | "IronDoubleAxe" | "IronPickaxe" | "Inkstick" | "Coconut" | "PalmLeaf" | "Offal" | "BoneFragments" | "LitPoleTorch" | "CottonBoll" | "CottonSeeds" | "CottonFabric" | "BonePole" | "Tourniquet" | "WroughtIronPickaxe" | "WroughtIronDoubleAxe" | "WroughtIronShovel" | "WroughtIronSpear" | "WroughtIronHammer" | "WroughtIronLockpick" | "WroughtIronShield" | "WroughtIronGauntlets" | "WroughtIronCuisses" | "WroughtIronGorget" | "WroughtIronHelmet" | "WroughtIronBoots" | "WroughtIronBreastplate" | "WroughtIronShortSword" | "WoodenWall" | "WoodenFlooring" | "WoodenDoor" | "FishingRod" | "MessageInABottle" | "CarbonPowder" | "PileOfCompost" | "FishGlue" | "WoodenShavings" | "GraniteDeadfall" | "Snare" | "WaterskinOfMedicinalWater" | "CharcoalBandage" | "WoodenTongs" | "WroughtIronTongs" | "SheetOfGlass" | "SolarStill" | "TinWaterStill" | "GraniteSundial" | "LitTallowTorch" | "Sinew" | "ShortBow" | "LongBow" | "CompositeBow" | "WaterskinOfPurifiedFreshWater" | "WaterskinOfUnpurifiedFreshWater" | "GlassBottle" | "Cork" | "GlassBottleOfSeawater" | "GlassBottleOfDesalinatedWater" | "GlassBottleOfMedicinalWater" | "GlassBottleOfPurifiedFreshWater" | "GlassBottleOfUnpurifiedFreshWater" | "WroughtIronArrow" | "IronArrow" | "GraniteBullet" | "WroughtIronBullet" | "IronBullet" | "LeatherQuiver" | "Ectoplasm" | "MagicalEssence" | "WoodenFence" | "CreatureIdol" | "CordedSling" | "LeatherSling" | "WroughtIronArrowhead" | "IronArrowhead" | "Hammock" | "CottonBedroll" | "FeatherBedroll" | "RawTaintedMeat" | "CookedTaintedMeat" | "GraniteKnife" | "RawBlindfish" | "CookedBlindfish" | "Pemmican" | "CookedPemmican" | "Sail" | "Sailboat" | "ChickenEgg" | "BoiledChickenEgg" | "SheafOfHay" | "Niter" | "Saltpeter" | "BlackPowder" | "FlintlockPistol" | "Giblets" | "ExplosiveTrap" | "SkeletalMageWand" | "RawClayJug" | "ClayJug" | "ClayJugOfSeawater" | "ClayJugOfDesalinatedWater" | "ClayJugOfMedicinalWater" | "ClayJugOfPurifiedFreshWater" | "ClayJugOfUnpurifiedFreshWater" | "RawClayBrick" | "ClayBrick" | "ClayWall" | "ClayFlooring" | "PineappleSeeds" | "RaspberrySeeds" | "PricklyPearSeeds" | "ClematisSeeds" | "PaperSheet" | "PaperMold" | "Beggarticks" | "MilkThistleFlowers" | "DrawnMap" | "TatteredClothShirt" | "TatteredClothTrousers" | "WoodenGate" | "PoisonIvyLeaves" | "PoisonIvySeeds" | "WroughtIronChest" | "IronChest" | "SwitchgrassSeeds" | "Apple" | "SpiderEggs" | "TailFeathers" | "AppleSeeds" | "VenomGland" | "OrnateWoodenChest" | "RollOfRedCarpet" | "OrnateCape" | "FireBladder" | "GoldenKey" | "WoodenShortSword" | "ClayKiln" | "ClayCampfire" | "ClayFurnace" | "CopperWaterStill" | "SandstoneCampfire" | "SandstoneFurnace" | "WroughtIronWaterStill" | "GraniteKiln" | "WroughtIronAnvil" | "IronAnvil" | "MageRobe" | "CrackedOrb" | "AnimalClaw" | "AnimalPelt" | "AnimalFur" | "Scales" | "SharkFin" | "RawReptileMeat" | "CookedReptileMeat" | "Tentacles" | "CookedTentacles" | "WormMeat" | "CookedWormMeat" | "GranitePickaxe" | "WroughtIronAxe" | "IronAxe" | "FertileSoil" | "GraniteHoe" | "WroughtIronHoe" | "IronHoe" | "LavaBeetleHelmet" | "SpruceCone" | "SpruceSeeds" | "SpruceNeedles" | "CypressCone" | "CypressSeeds" | "CypressLeaves" | "Lettuce" | "LettuceSeeds" | "ChiveSeeds" | "Potato" | "PotatoSeeds" | "Carrot" | "CarrotSeeds" | "CornEar" | "CornSeeds" | "Cucumber" | "CucumberSeeds" | "Tomato" | "TomatoSeeds" | "Pumpkin" | "PumpkinSeeds" | "PricklyPearFruit" | "SugarCaneStalks" | "SugarCaneSeeds" | "BushelOfWheat" | "Wheat" | "CookedPotato" | "CookedCornCob" | "BundleOfSwitchgrass" | "Cloak" | "WoodenMortarAndPestle" | "SandstoneMortarAndPestle" | "WroughtIronMortarAndPestle" | "IronMortarAndPestle" | "RawClayMortarAndPestle" | "ClayMortarAndPestle" | "CopperOre" | "SmeltedCopper" | "CopperPickaxe" | "CopperDoubleAxe" | "CopperShovel" | "CopperSpear" | "CopperHammer" | "CopperLockpick" | "CopperBuckler" | "CopperGauntlets" | "CopperGreaves" | "CopperGorget" | "CopperHelmet" | "CopperBoots" | "CopperCuirass" | "CopperShortSword" | "CopperTongs" | "CopperArrow" | "CopperBullet" | "CopperArrowhead" | "CopperChest" | "CopperAnvil" | "CopperAxe" | "CopperHoe" | "CopperMortarAndPestle" | "WaterskinOfGoatMilk" | "ClayJugOfGoatMilk" | "GlassBottleOfGoatMilk" | "Obsidian" | "OrnateBlueBook" | "Journal" | "MossCoveredBook" | "GildedRedBook" | "ArrowShaft" | "SlitherSucker" | "AberrantSlitherSucker" | "StrawHat" | "BlackplateSabatons" | "BlackplateBreastplate" | "BlackplateGauntlets" | "BlackplateGorget" | "BlackplateGreaves" | "BlackplateHelmet" | "DeathKnightAxe" | "Macuahuitl" | "ObsidianArrow" | "ObsidianArrowhead" | "ObsidianAxe" | "ObsidianKnife" | "ObsidianShovel" | "ObsidianSpear" | "TumbleweedSeeds" | "CoconutHusk" | "PeeledCoconut" | "CoconutMeat" | "CoconutContainerOfCoconutWater" | "CoconutContainer" | "CoconutContainerOfSeawater" | "CoconutContainerOfDesalinatedWater" | "CoconutContainerOfMedicinalWater" | "CoconutContainerOfPurifiedFreshWater" | "CoconutContainerOfUnpurifiedFreshWater" | "CoconutContainerOfGoatMilk" | "OldEducationalScroll" | "StrippedHide" | "ClaySandCastFlask" | "SandstoneSandCastFlask" | "GraniteSandCastFlask" | "BoneGlue" | "CutHide" | "BoneMeal" | "PileOfDesertSand" | "JoshuaTreeLeaves" | "JoshuaTreeFruit" | "JoshuaTreeSeeds" | "CookedJoshuaTreeFruit" | "JoshuaTreeFlowers" | "SaguaroCactusFruit" | "SaguaroCactusSeeds" | "SaguaroCactusChunk" | "GraniteWell" | "SandstoneWell" | "ClayWell" | "AloeVeraLeaves" | "AloeVeraSeeds" | "DeadScorpion" | "DeadAberrantScorpion" | "CookedScorpion" | "CookedAberrantScorpion" | "ScorpionStinger" | "CopperBakingTray" | "WroughtIronBakingTray" | "IronBakingTray" | "Flour" | "Dough" | "Hardtack" | "HitchingPost" | "ShreddedPaper" | "RawMudskipper" | "RawAberrantMudskipper" | "CookedMudskipper" | "CookedAberrantMudskipper" | "RawRedSnapper" | "CookedRedSnapper" | "RawWalleye" | "CookedWalleye" | "WoodenShield" | "CopperRefinementTools" | "WroughtIronRefinementTools" | "IronRefinementTools" | "ScaleBelt" | "ScaleVest" | "ScaleBoots" | "ScaleCap" | "ScaleBevor" | "ScaleLeggings" | "ScaleGloves" | "CookedJoshuaTreeFlowers" | "SaguaroCactusRibs" | "BladesOfGrass" | "AnimalDroppings" | "AnimalDung" | "Guano" | "Tallow" | "TallowCandle" | "LitTallowCandle" | "WispDust" | "MagicalAspect" | "GoldenSextant" | "RawChoppedFish" | "CookedChoppedFish" | "CookedFishKebab" | "AshCement" | "AshCementBrick" | "AshCementFlooring" | "AshCementWall" | "IceShard" | "PenguinEgg" | "BoiledPenguinEgg" | "RawPenguinMeat" | "CookedPenguinMeat" | "Crowberries" | "CookedCrowberries" | "CrowberrySeeds" | "Winterberries" | "WinterberrySeeds" | "ArcticPoppies" | "ArcticPoppySeeds" | "PirateHat" | "AloeVeraBandage" | "SharkTooth" | "CopperKnife" | "WroughtIronKnife" | "IronKnife" | "TinOre" | "SmeltedTin" | "TinPickaxe" | "TinDoubleAxe" | "TinShovel" | "TinSpear" | "TinHammer" | "TinLockpick" | "TinShield" | "TinGloves" | "TinChausses" | "TinBevor" | "TinHelmet" | "TinFootgear" | "TinCuirass" | "TinShortSword" | "TinTongs" | "TinArrow" | "TinBullet" | "TinArrowhead" | "TinChest" | "TinAnvil" | "TinAxe" | "TinHoe" | "TinMortarAndPestle" | "TinBakingTray" | "TinRefinementTools" | "TinKnife" | "SmeltedBronze" | "BronzePickaxe" | "BronzeDoubleAxe" | "BronzeShovel" | "BronzeSpear" | "BronzeHammer" | "BronzeLockpick" | "BronzeKiteShield" | "BronzeGauntlets" | "BronzeGreaves" | "BronzeBevor" | "BronzeHelmet" | "BronzeBoots" | "BronzeChestArmor" | "BronzeShortSword" | "BronzeTongs" | "BronzeArrow" | "BronzeBullet" | "BronzeArrowhead" | "BronzeChest" | "BronzeAnvil" | "BronzeAxe" | "BronzeHoe" | "BronzeMortarAndPestle" | "BronzeBakingTray" | "BronzeRefinementTools" | "BronzeKnife" | "IceBrick" | "SnowBrick" | "IceWall" | "IceFlooring" | "SnowWall" | "SnowFlooring" | "CaliginousScrap" | "MagicalExtract" | "ShimmeringFibers" | "MagicalTwine" | "SandstoneHammer" | "SandstoneBullet" | "SandstoneAnvil" | "SnowScarecrow" | "FrozenFlesh" | "AnimalTusk" | "WhitePineCone" | "WhitePineSeeds" | "WhitePineNeedles" | "FurCoat" | "FurMittens" | "FurBoots" | "BirdDroppings" | "HardenedCoil" | "MagicalBinding" | "ArmoredScales" | "RawPangolinMeat" | "CookedPangolinMeat" | "ArmoredScaleBelt" | "ArmoredScaleVest" | "ArmoredScaleBoots" | "ArmoredScaleCrown" | "ArmoredScaleBevor" | "ArmoredScaleCuisses" | "ArmoredScaleGloves" | "TinNeedle" | "CopperNeedle" | "WroughtIronNeedle" | "IronNeedle" | "BronzeNeedle" | "TuftsOfTanglehead" | "TangleheadSeeds" | "WispInAGlassBottle" | "AberrantWispInAGlassBottle" | "WispInAClayJug" | "AberrantWispInAClayJug" | "WispInACoconutContainer" | "AberrantWispInACoconutContainer" | "WispInAWaterskin" | "AberrantWispInAWaterskin" | "StrawScarecrow" | "CactusScarecrow" | "ClothShirt" | "ClothTrousers" | "UnripePapaya" | "Papaya" | "PapayaSeeds" | "PalapalaiFrond" | "PalapalaiSpores" | "ButtonMushroomSpores" | "FlyAmanitaSpores" | "BrambleCrown" | "DarkBrambleCrown" | "Cotton" | "WaterskinOfSwampWater" | "GlassBottleOfSwampWater" | "ClayJugOfSwampWater" | "CoconutContainerOfSwampWater" | "WaterskinOfFilteredWater" | "GlassBottleOfFilteredWater" | "ClayJugOfFilteredWater" | "CoconutContainerOfFilteredWater" | "ClayFilter" | "SandstoneAxe" | "SandstoneShovel" | "SharpSandstone" | "SmoothSandstone" | "SandstoneSpear" | "SandstoneKnife" | "SandstonePickaxe" | "SandstoneHoe" | "SandstoneDeadfall" | "SandstoneSundial" | "WoodenPlank" | "WoodenWheel" | "WoodenAxle" | "WoodenMinecart" | "WoodenRail" | "WoodenTrack" | "TinWheel" | "TinAxle" | "TinMinecart" | "TinRail" | "TinTrack" | "CopperWheel" | "CopperAxle" | "CopperMinecart" | "CopperRail" | "CopperTrack" | "WroughtIronWheel" | "WroughtIronAxle" | "WroughtIronMinecart" | "WroughtIronRail" | "WroughtIronTrack" | "IronWheel" | "IronAxle" | "IronMinecart" | "IronRail" | "IronTrack" | "BronzeWheel" | "BronzeAxle" | "BronzeMinecart" | "BronzeRail" | "BronzeTrack" | "BasaltArrow" | "BasaltArrowhead" | "Basalt" | "BasaltMortarAndPestle" | "BasaltAxe" | "BasaltShovel" | "SharpBasalt" | "SmoothBasalt" | "BasaltSpear" | "BasaltFlooring" | "BasaltWall" | "BasaltCampfire" | "BasaltFurnace" | "BasaltHammer" | "BasaltAnvil" | "BasaltDeadfall" | "IronWaterStill" | "BasaltSundial" | "BasaltBullet" | "BasaltKnife" | "BasaltKiln" | "BasaltPickaxe" | "BasaltHoe" | "BasaltSandCastFlask" | "BasaltWell" | "WoodenTrackGate" | "MoldyScroll" | "MysteriousParchment" | "MagicalInscription" | "CattailLeaves" | "CattailShoots" | "CattailFlowers" | "CattailSeeds" | "CobblestoneFlooring" | "WaterLilies" | "Mud" | "SpikerushSheaths" | "SpikerushSeeds" | "WoodenBookcase" | "GraniteLighthouse" | "SandstoneLighthouse" | "ClayLighthouse" | "BasaltLighthouse" | "WoodenCage" | "FullWoodenCage" | "TinCage" | "FullTinCage" | "CopperCage" | "FullCopperCage" | "WroughtIronCage" | "FullWroughtIronCage" | "IronCage" | "FullIronCage" | "BronzeCage" | "FullBronzeCage" | "Amber" | "Tourmaline" | "Topaz" | "Opal" | "Sapphire" | "WoodGolemFigure" | "ClayGolemFigure" | "GraniteGolemFigure" | "SandstoneGolemFigure" | "BasaltGolemFigure" | "AberrantWoodGolemFigure" | "AberrantClayGolemFigure" | "AberrantGraniteGolemFigure" | "AberrantSandstoneGolemFigure" | "AberrantBasaltGolemFigure" | "GraniteDripstone" | "SandstoneDripstone" | "BasaltDripstone" | "ClayDripstone" | "BronzeWaterStill" | "ArmorStand" | "RuneOfEvil" | "RuneOfChaos" | "RuneOfGood" | "GraniteAltar" | "WoodenWheelbarrow" | "TinWheelbarrow" | "CopperWheelbarrow" | "WroughtIronWheelbarrow" | "IronWheelbarrow" | "BronzeWheelbarrow" | "GraniteCrucible" | "SandstoneCrucible" | "BasaltCrucible" | "RawClayCrucible" | "ClayCrucible" | "SandstoneAltar" | "BasaltAltar" | "ClayAltar" | "PineResin" | "SpruceResin" | "CypressResin" | "Pitch" | "PitchGlue" | "MagicalOrb" | "RawAberrantCod" | "CookedAberrantCod" | "RawAberrantBlindfish" | "CookedAberrantBlindfish" | "RawAberrantRedSnapper" | "CookedAberrantRedSnapper" | "RawAberrantWalleye" | "CookedAberrantWalleye" | "FishBones" | "AnimalCartilage" | "GelatinPowder" | "Gelatin" | "Aspic" | "FruitCocktail" | "VegetableTerrine" | "TatteredClothBandana" | "ClothBandana" | "RustedScimitar" | "TricorneHat" | "SandstoneArrowhead" | "SandstoneArrow" | "ReedFlute" | "WoodenFlute" | "RawClayFlute" | "ClayFlute" | "BoneFlute" | "TinFlute" | "CopperFlute" | "WroughtIronFlute" | "IronFlute" | "BronzeFlute" | "StrippedLeather" | "ChickenEggshells" | "PenguinEggshells" | "MagicalMote" | "Last">, [arg1: ActionArgument.Undefined, ActionArgument.Integer32]], import("../../player/Player").default, void, import("@wayward/game/game/entity/action/IAction").IActionUsable, [import("@wayward/game/game/item/IItem").IContainer, ItemType, (number | undefined)?]>;
@@ -15,5 +15,5 @@ import { ActionArgument } from "@wayward/game/game/entity/action/IAction";
15
15
  export interface ISwapEquipment extends IActionUsable {
16
16
  doodad: Doodad;
17
17
  }
18
- declare const _default: Action<[[arg1: ActionArgument.Undefined, ActionArgument.Doodad]], import("../../Human").default<unknown, number, import("../../../reference/IReferenceManager").ReferenceType.NPC | import("../../../reference/IReferenceManager").ReferenceType.Player>, boolean, ISwapEquipment, [(Doodad | undefined)?]>;
18
+ declare const _default: Action<[[arg1: ActionArgument.Undefined, ActionArgument.DoodadNearby]], import("../../Human").default<unknown, number, import("../../../reference/IReferenceManager").ReferenceType.NPC | import("../../../reference/IReferenceManager").ReferenceType.Player>, boolean, ISwapEquipment, [(Doodad | undefined)?]>;
19
19
  export default _default;
@@ -8,5 +8,5 @@
8
8
  * Wayward is a copyrighted and licensed work. Modification and/or distribution of any source files is prohibited. If you wish to modify the game in any way, please refer to the modding guide:
9
9
  * https://github.com/WaywardGame/types/wiki
10
10
  */
11
- declare const _default: import("../Action").Action<[[arg1: import("../IAction").ActionArgument.Undefined, import("../IAction").ActionArgument.Doodad]], import("../../Human").default<unknown, number, import("../../../reference/IReferenceManager").ReferenceType.NPC | import("../../../reference/IReferenceManager").ReferenceType.Player>, boolean, import("@wayward/game/game/entity/action/actions/SwapWithArmorStand").ISwapEquipment, [(import("../../../doodad/Doodad").default | undefined)?]>;
11
+ declare const _default: import("../Action").Action<[[arg1: import("../IAction").ActionArgument.Undefined, import("../IAction").ActionArgument.DoodadNearby]], import("../../Human").default<unknown, number, import("../../../reference/IReferenceManager").ReferenceType.NPC | import("../../../reference/IReferenceManager").ReferenceType.Player>, boolean, import("@wayward/game/game/entity/action/actions/SwapWithArmorStand").ISwapEquipment, [(import("../../../doodad/Doodad").default | undefined)?]>;
12
12
  export default _default;
@@ -19,5 +19,5 @@ export interface IToggleDoorCanUse extends IActionUsable {
19
19
  tile: Tile;
20
20
  changeType: DoodadType;
21
21
  }
22
- declare const _default: Action<[[arg1: ActionArgument.Undefined, ActionArgument.Doodad], [arg1: ActionArgument.Undefined, ActionArgument.Boolean]], import("../../Human").default<unknown, number, import("../../../reference/IReferenceManager").ReferenceType.NPC | import("../../../reference/IReferenceManager").ReferenceType.Player>, boolean, IToggleDoorCanUse, [(Doodad | undefined)?, (boolean | undefined)?]>;
22
+ declare const _default: Action<[[arg1: ActionArgument.Undefined, ActionArgument.DoodadNearby], [arg1: ActionArgument.Undefined, ActionArgument.Boolean]], import("../../Human").default<unknown, number, import("../../../reference/IReferenceManager").ReferenceType.NPC | import("../../../reference/IReferenceManager").ReferenceType.Player>, boolean, IToggleDoorCanUse, [(Doodad | undefined)?, (boolean | undefined)?]>;
23
23
  export default _default;
@@ -29,5 +29,5 @@ export interface ToggleVehicleItemCanUse extends IActionUsable {
29
29
  facingTile?: Tile;
30
30
  }
31
31
  export type ToggleVehicleCanUse = ToggleVehicleDoodadCanUse | ToggleVehicleItemCanUse;
32
- declare const _default: Action<[[arg1: ActionArgument.Undefined, ActionArgument.ItemNearby, ActionArgument.Doodad]], import("../../Human").default<unknown, number, import("../../../reference/IReferenceManager").ReferenceType.NPC | import("../../../reference/IReferenceManager").ReferenceType.Player>, void, ToggleVehicleCanUse, [(Doodad | Item | undefined)?]>;
32
+ declare const _default: Action<[[arg1: ActionArgument.Undefined, ActionArgument.ItemNearby, ActionArgument.DoodadNearby]], import("../../Human").default<unknown, number, import("../../../reference/IReferenceManager").ReferenceType.NPC | import("../../../reference/IReferenceManager").ReferenceType.Player>, void, ToggleVehicleCanUse, [(Doodad | Item | undefined)?]>;
33
33
  export default _default;
@@ -15,5 +15,5 @@ import type Item from "@wayward/game/game/item/Item";
15
15
  export interface ITransmogrifyCanUse extends IActionUsable {
16
16
  transmogrifyTarget: Item;
17
17
  }
18
- declare const _default: Action<[ActionArgument.ItemInventory, [arg1: ActionArgument.Undefined, ActionArgument.ItemInventory]], import("../../Human").default<unknown, number, import("../../../reference/IReferenceManager").ReferenceType.NPC | import("../../../reference/IReferenceManager").ReferenceType.Player>, void, ITransmogrifyCanUse, [Item, (Item | undefined)?]>;
18
+ declare const _default: Action<[ActionArgument.ItemNearby, [arg1: ActionArgument.Undefined, ActionArgument.ItemNearby]], import("../../Human").default<unknown, number, import("../../../reference/IReferenceManager").ReferenceType.NPC | import("../../../reference/IReferenceManager").ReferenceType.Player>, void, ITransmogrifyCanUse, [Item, (Item | undefined)?]>;
19
19
  export default _default;
@@ -0,0 +1,13 @@
1
+ /*!
2
+ * Copyright 2011-2024 Unlok
3
+ * https://www.unlok.ca
4
+ *
5
+ * Credits & Thanks:
6
+ * https://www.unlok.ca/credits-thanks/
7
+ *
8
+ * Wayward is a copyrighted and licensed work. Modification and/or distribution of any source files is prohibited. If you wish to modify the game in any way, please refer to the modding guide:
9
+ * https://github.com/WaywardGame/types/wiki
10
+ */
11
+ import type { IActionConfirmerApi } from "@wayward/game/game/entity/action/IAction";
12
+ import type Human from "@wayward/game/game/entity/Human";
13
+ export default function (action: IActionConfirmerApi<Human>): Promise<boolean>;
@@ -51,12 +51,14 @@ export declare namespace IUsableActionRequirement {
51
51
  validate(player: Player, value: TYPE): boolean;
52
52
  }
53
53
  type Always = true;
54
+ function isValid<T>(result: false | T | undefined, option: true | IUsableActionRequirement<T> | undefined): boolean;
54
55
  }
55
56
  export interface IUsableActionItemRequirement extends Omit<IUsableActionRequirement<Item>, "find"> {
56
57
  validateType?(player: Player, value: ItemType, description?: IItemDescription): boolean;
57
58
  finder?: false | ((player: Player, defaultOptions?: IItemFinderOptions, provided?: Omit<IUsableActionPossibleUsing, "item">) => ItemFinder | undefined);
58
59
  requiresQuality?: true;
59
60
  requiresType?: true;
61
+ cannotDamageItem?: true;
60
62
  }
61
63
  export declare namespace IUsableActionItemRequirement {
62
64
  function hasFinder(requirements?: IUsableActionRequirements): boolean;
@@ -107,6 +109,8 @@ export interface IUsableActionUsing<REQUIREMENTS extends IUsableActionRequiremen
107
109
  targetTile: Tile;
108
110
  fromTile: Tile;
109
111
  item: ((REQUIREMENTS["item"] extends true ? Item : never) | (undefined extends REQUIREMENTS["item"] ? undefined : never) | (REQUIREMENTS["item"] extends {
112
+ cannotDamageItem: true;
113
+ } ? Item : never) | (REQUIREMENTS["item"] extends {
110
114
  allowNone: true;
111
115
  } ? Item | undefined : never) | (REQUIREMENTS["item"] extends {
112
116
  validate(player: Player, value: Item): boolean;
@@ -117,7 +121,9 @@ export interface IUsableActionUsing<REQUIREMENTS extends IUsableActionRequiremen
117
121
  } ? Item : never) | (REQUIREMENTS["item"] extends {
118
122
  allowOnlyItemType(player: Player, type: ItemType): boolean;
119
123
  } ? undefined : never));
120
- itemType: ((REQUIREMENTS["item"] extends true ? ItemType : never) | (undefined extends REQUIREMENTS["item"] ? undefined : never) | (REQUIREMENTS["item"] extends {
124
+ itemType: ((REQUIREMENTS["item"] extends true ? ItemType : never) | (REQUIREMENTS["item"] extends {
125
+ cannotDamageItem: true;
126
+ } ? ItemType : never) | (undefined extends REQUIREMENTS["item"] ? undefined : never) | (REQUIREMENTS["item"] extends {
121
127
  allowOnlyItemType(player: Player, type: ItemType): boolean;
122
128
  } ? ItemType : never) | (REQUIREMENTS["item"] extends {
123
129
  requiresType: true;
@@ -132,6 +138,17 @@ export interface IUsableActionUsing<REQUIREMENTS extends IUsableActionRequiremen
132
138
  } ? REQUIREMENTS["item"] extends {
133
139
  requiresType: true;
134
140
  } ? never : undefined : never));
141
+ container?: ((REQUIREMENTS["item"] extends true ? IContainer : never) | (REQUIREMENTS["item"] extends {
142
+ allowOnlyItemType(player: Player, type: ItemType): boolean;
143
+ } ? IContainer : never) | (REQUIREMENTS["item"] extends {
144
+ requiresType: true;
145
+ } ? IContainer : ((REQUIREMENTS["item"] extends {
146
+ validate(player: Player, value: Item): boolean;
147
+ } ? IContainer : never) | (REQUIREMENTS["item"] extends {
148
+ validateType(player: Player, value: ItemType, description?: IItemDescription): boolean;
149
+ } ? IContainer : never))) | (REQUIREMENTS["item"] extends {
150
+ finder: ItemFinder;
151
+ } ? IContainer : never));
135
152
  itemQuality: ((REQUIREMENTS["item"] extends true ? ArrayOr<Quality> : never) | (undefined extends REQUIREMENTS["item"] ? undefined : never) | (REQUIREMENTS["item"] extends {
136
153
  allowNone: true;
137
154
  } ? undefined : never) | (REQUIREMENTS["item"] extends {
@@ -66,6 +66,8 @@ declare class UsableAction<REQUIREMENTS extends IUsableActionRequirements = IUsa
66
66
  private _disposed;
67
67
  get disposed(): boolean;
68
68
  constructor(requirements: REQUIREMENTS, definition: DEFINITION);
69
+ /** @deprecated For console use only */
70
+ protected get debug(): any;
69
71
  addUser(user: UsableActionRegistrar): this;
70
72
  removeUser(user: UsableActionRegistrar): this;
71
73
  is(id?: ActionId): boolean;
@@ -103,7 +103,9 @@ export declare enum UsableActionType {
103
103
  CommandAllAttack = 100081,
104
104
  CommandAllHeel = 100082,
105
105
  Ascend = 100083,
106
- Descend = 100084
106
+ Descend = 100084,
107
+ Excavate = 100085,
108
+ Collapse = 100086
107
109
  }
108
110
  export declare enum UsableActionTypePlaceholder {
109
111
  TradeItem = 200000,
@@ -17,7 +17,7 @@ export declare enum WorldContextMenuClasses {
17
17
  OptionText = "world-context-menu-option-text"
18
18
  }
19
19
  export declare namespace WorldContextMenuClasses {
20
- const OptionSpecific: (enumValue: UsableActionType) => "world-context-menu-option-none" | "world-context-menu-option-actions" | "world-context-menu-option-move" | "world-context-menu-option-use" | "world-context-menu-option-unused" | "world-context-menu-option-commandattack" | "world-context-menu-option-commanddefend" | "world-context-menu-option-commandfollowclose" | "world-context-menu-option-commandfollowfar" | "world-context-menu-option-commandheel" | "world-context-menu-option-commandstay" | "world-context-menu-option-quickslotremove" | "world-context-menu-option-quickslotadd" | "world-context-menu-option-quickslotaddtofree" | "world-context-menu-option-quickslotaddtoslot" | "world-context-menu-option-movetoinventory" | "world-context-menu-option-dropmenu" | "world-context-menu-option-dropall" | "world-context-menu-option-dropallofsamequality" | "world-context-menu-option-repairwithitem" | "world-context-menu-option-reinforcewithitem" | "world-context-menu-option-enhancewithitem" | "world-context-menu-option-enchantwithitem" | "world-context-menu-option-transmogrifywithitem" | "world-context-menu-option-upgradewithitem" | "world-context-menu-option-alterwithitem" | "world-context-menu-option-refinewithitem" | "world-context-menu-option-preservewithitem" | "world-context-menu-option-addfuelwithitem" | "world-context-menu-option-ignitewithitem" | "world-context-menu-option-absorbwithitem" | "world-context-menu-option-exudewithitem" | "world-context-menu-option-movetoinventorymenu" | "world-context-menu-option-movetoactivecontainermenu" | "world-context-menu-option-movetofacingcontainermenu" | "world-context-menu-option-moveall" | "world-context-menu-option-moveallofsamequality" | "world-context-menu-option-tradetradersell" | "world-context-menu-option-tradetraderbuy" | "world-context-menu-option-itemactions" | "world-context-menu-option-gatherwithhands" | "world-context-menu-option-harvestwithhands" | "world-context-menu-option-digwithhands" | "world-context-menu-option-tillwithhands" | "world-context-menu-option-pickupexcrementwithhands" | "world-context-menu-option-equipheld" | "world-context-menu-option-equiplegs" | "world-context-menu-option-equipchest" | "world-context-menu-option-equiphead" | "world-context-menu-option-equipwaist" | "world-context-menu-option-equipfeet" | "world-context-menu-option-equipneck" | "world-context-menu-option-equiphands" | "world-context-menu-option-equipback" | "world-context-menu-option-equipmainhand" | "world-context-menu-option-equipoffhand" | "world-context-menu-option-restonground" | "world-context-menu-option-sleeponground" | "world-context-menu-option-commandmenu" | "world-context-menu-option-displayheld" | "world-context-menu-option-displaylegs" | "world-context-menu-option-displaychest" | "world-context-menu-option-displayhead" | "world-context-menu-option-displaywaist" | "world-context-menu-option-displayfeet" | "world-context-menu-option-displayneck" | "world-context-menu-option-displayhands" | "world-context-menu-option-displayback" | "world-context-menu-option-displaymainhand" | "world-context-menu-option-displayoffhand" | "world-context-menu-option-reshapewithitem" | "world-context-menu-option-movecontentsmenu" | "world-context-menu-option-movecontentstoinventory" | "world-context-menu-option-movecontentstoactivecontainer" | "world-context-menu-option-movecontentstofacingcontainer" | "world-context-menu-option-movecontentsofactivecontainermenu" | "world-context-menu-option-movecontentsoffacingcontainermenu" | "world-context-menu-option-commandmenuall" | "world-context-menu-option-commandallfollowclose" | "world-context-menu-option-commandallfollowfar" | "world-context-menu-option-commandallstay" | "world-context-menu-option-commandalldefend" | "world-context-menu-option-commandallattack" | "world-context-menu-option-commandallheel" | "world-context-menu-option-ascend" | "world-context-menu-option-descend";
20
+ const OptionSpecific: (enumValue: UsableActionType) => "world-context-menu-option-none" | "world-context-menu-option-actions" | "world-context-menu-option-move" | "world-context-menu-option-use" | "world-context-menu-option-unused" | "world-context-menu-option-collapse" | "world-context-menu-option-commandattack" | "world-context-menu-option-commanddefend" | "world-context-menu-option-commandfollowclose" | "world-context-menu-option-commandfollowfar" | "world-context-menu-option-commandheel" | "world-context-menu-option-commandstay" | "world-context-menu-option-quickslotremove" | "world-context-menu-option-quickslotadd" | "world-context-menu-option-quickslotaddtofree" | "world-context-menu-option-quickslotaddtoslot" | "world-context-menu-option-movetoinventory" | "world-context-menu-option-dropmenu" | "world-context-menu-option-dropall" | "world-context-menu-option-dropallofsamequality" | "world-context-menu-option-repairwithitem" | "world-context-menu-option-reinforcewithitem" | "world-context-menu-option-enhancewithitem" | "world-context-menu-option-enchantwithitem" | "world-context-menu-option-transmogrifywithitem" | "world-context-menu-option-upgradewithitem" | "world-context-menu-option-alterwithitem" | "world-context-menu-option-refinewithitem" | "world-context-menu-option-preservewithitem" | "world-context-menu-option-addfuelwithitem" | "world-context-menu-option-ignitewithitem" | "world-context-menu-option-absorbwithitem" | "world-context-menu-option-exudewithitem" | "world-context-menu-option-movetoinventorymenu" | "world-context-menu-option-movetoactivecontainermenu" | "world-context-menu-option-movetofacingcontainermenu" | "world-context-menu-option-moveall" | "world-context-menu-option-moveallofsamequality" | "world-context-menu-option-tradetradersell" | "world-context-menu-option-tradetraderbuy" | "world-context-menu-option-itemactions" | "world-context-menu-option-gatherwithhands" | "world-context-menu-option-harvestwithhands" | "world-context-menu-option-digwithhands" | "world-context-menu-option-tillwithhands" | "world-context-menu-option-pickupexcrementwithhands" | "world-context-menu-option-equipheld" | "world-context-menu-option-equiplegs" | "world-context-menu-option-equipchest" | "world-context-menu-option-equiphead" | "world-context-menu-option-equipwaist" | "world-context-menu-option-equipfeet" | "world-context-menu-option-equipneck" | "world-context-menu-option-equiphands" | "world-context-menu-option-equipback" | "world-context-menu-option-equipmainhand" | "world-context-menu-option-equipoffhand" | "world-context-menu-option-restonground" | "world-context-menu-option-sleeponground" | "world-context-menu-option-commandmenu" | "world-context-menu-option-displayheld" | "world-context-menu-option-displaylegs" | "world-context-menu-option-displaychest" | "world-context-menu-option-displayhead" | "world-context-menu-option-displaywaist" | "world-context-menu-option-displayfeet" | "world-context-menu-option-displayneck" | "world-context-menu-option-displayhands" | "world-context-menu-option-displayback" | "world-context-menu-option-displaymainhand" | "world-context-menu-option-displayoffhand" | "world-context-menu-option-reshapewithitem" | "world-context-menu-option-movecontentsmenu" | "world-context-menu-option-movecontentstoinventory" | "world-context-menu-option-movecontentstoactivecontainer" | "world-context-menu-option-movecontentstofacingcontainer" | "world-context-menu-option-movecontentsofactivecontainermenu" | "world-context-menu-option-movecontentsoffacingcontainermenu" | "world-context-menu-option-commandmenuall" | "world-context-menu-option-commandallfollowclose" | "world-context-menu-option-commandallfollowfar" | "world-context-menu-option-commandallstay" | "world-context-menu-option-commandalldefend" | "world-context-menu-option-commandallattack" | "world-context-menu-option-commandallheel" | "world-context-menu-option-ascend" | "world-context-menu-option-descend" | "world-context-menu-option-excavate";
21
21
  }
22
22
  export declare const UsableActionsWorldActions: UsableActionGenerator<[]>;
23
23
  export declare const UsableActionsWorldItemActions: UsableActionGenerator<[]>;
@@ -28,12 +28,13 @@ import type { CreatureZone } from "@wayward/game/game/entity/creature/zone/Creat
28
28
  import type NPC from "@wayward/game/game/entity/npc/NPC";
29
29
  import type Player from "@wayward/game/game/entity/player/Player";
30
30
  import { StatusApplicability } from "@wayward/game/game/entity/status/IStatus";
31
- import type { IUncastableContainer } from "@wayward/game/game/item/IItem";
31
+ import { type IUncastableContainer } from "@wayward/game/game/item/IItem";
32
32
  import type Item from "@wayward/game/game/item/Item";
33
33
  import type { Reference, ReferenceType } from "@wayward/game/game/reference/IReferenceManager";
34
34
  import type Tile from "@wayward/game/game/tile/Tile";
35
35
  import type TileEvent from "@wayward/game/game/tile/TileEvent";
36
36
  import Translation, { Article } from "@wayward/game/language/Translation";
37
+ import { MarkerType } from "@wayward/game/renderer/notifier/INotifier";
37
38
  import type { IUnserializedCallback } from "@wayward/game/save/serializer/ISerializer";
38
39
  import { Direction } from "@wayward/game/utilities/math/Direction";
39
40
  import type { IVector2, IVector3 } from "@wayward/game/utilities/math/IVector";
@@ -147,7 +148,13 @@ export default class Creature extends EntityWithStats<ICreatureDescription, Crea
147
148
  getOwner(): Human | undefined;
148
149
  damage(damageInfo: IDamageInfo): number | undefined;
149
150
  damage(damageInfo: IDamageInfo, creatureX?: number, creatureY?: number, creatureZ?: number): number | undefined;
150
- offer(items: Item[]): Item | undefined;
151
+ /**
152
+ * Called when we offer a creature an item using the "Offer" action or when a creature walks over an item to see if it tames them.
153
+ * @param items Items to offer or check to see if they are accepted.
154
+ * @param human Human that offered it (if not set, it's on the ground and we check for crafterIdentifier).
155
+ * @returns The item it accepted.
156
+ */
157
+ offer(items: Item[], human?: Human): Item | undefined;
151
158
  processSpecialAbilities(enemy: Human | Creature | undefined, bypass?: boolean): boolean;
152
159
  increaseWaste(item: Item): void;
153
160
  onUnserialized(): void;
@@ -209,10 +216,12 @@ export default class Creature extends EntityWithStats<ICreatureDescription, Crea
209
216
  */
210
217
  private breakItems;
211
218
  private processAiChanges;
219
+ private addAlertedMarker;
212
220
  /**
213
221
  * @returns Whether the creature has lost interest
214
222
  */
215
223
  private processAiInterest;
224
+ getDynamicMarker(type: string): MarkerType | undefined;
216
225
  getWanderChance(defaultChance: number): number | undefined;
217
226
  getWanderIdleChance(defaultChance: number): number | undefined;
218
227
  getWanderNewDirectionChance(defaultChance: number): number | undefined;
@@ -12,6 +12,7 @@ import CombatStrengthManager from "@wayward/game/game/entity/CombatStrengthManag
12
12
  import Creature from "@wayward/game/game/entity/creature/Creature";
13
13
  import type { ICreatureCheckMoveOptions } from "@wayward/game/game/entity/creature/ICreature";
14
14
  import { CreatureType, TileGroup } from "@wayward/game/game/entity/creature/ICreature";
15
+ import type { IEntityRemoveOptions } from "@wayward/game/game/entity/EntityManager";
15
16
  import EntityManager from "@wayward/game/game/entity/EntityManager";
16
17
  import type Human from "@wayward/game/game/entity/Human";
17
18
  import { MoveType } from "@wayward/game/game/entity/IEntity";
@@ -30,7 +31,7 @@ export interface ICreatureManagerEvents extends Events<EntityManager<Creature>>
30
31
  */
31
32
  canSpawn(type: CreatureType, tile: Tile, aberrant: boolean): boolean | undefined;
32
33
  }
33
- export default class CreatureManager extends EntityManager<Creature, {
34
+ export default class CreatureManager extends EntityManager<Creature, IEntityRemoveOptions & {
34
35
  remainTamed?: boolean;
35
36
  }> {
36
37
  protected readonly name = "CreatureManager";
@@ -24,6 +24,7 @@ import type Status from "@wayward/game/game/entity/status/Status";
24
24
  import type { ItemType, ItemTypeGroup } from "@wayward/game/game/item/IItem";
25
25
  import type Item from "@wayward/game/game/item/Item";
26
26
  import type { LootGroupType } from "@wayward/game/game/item/LootGroups";
27
+ import type { MagicalLootType } from "@wayward/game/game/item/MagicalLoot";
27
28
  import type { ITemperatureDescription } from "@wayward/game/game/temperature/ITemperature";
28
29
  import type { TileEventType } from "@wayward/game/game/tile/ITileEvent";
29
30
  import type Tile from "@wayward/game/game/tile/Tile";
@@ -202,6 +203,10 @@ export interface ICreatureDescription extends IModdable, ITemperatureDescription
202
203
  */
203
204
  runeChance?: RuneChance;
204
205
  waterAnimations?: boolean;
206
+ /**
207
+ * We set this for all creatures that are tamable through the the taming skill directly.
208
+ * - Some creatures are exempt from this and tamed only through items (Living Rock, Time Skitters).
209
+ */
205
210
  tamingDifficulty?: number;
206
211
  acceptedItems?: Array<ItemType | ItemTypeGroup>;
207
212
  lightSource?: boolean;
@@ -341,11 +346,29 @@ export interface ICreatureDescription extends IModdable, ITemperatureDescription
341
346
  * Called when a creature is spawned
342
347
  */
343
348
  onSpawn?: (creature: Creature) => void;
349
+ /**
350
+ * Set to PettingType.NotAllowed it they don't accept petting, or PettingType.Attack if they attack when petted
351
+ */
352
+ acceptsPets?: PettingType;
353
+ /**
354
+ * Defines the magical mote type this creature can drop. Aberrant creatures will always drop a magical mote of the given magical loot type.
355
+ */
356
+ magicalLoot?: MagicalLootType;
357
+ /**
358
+ * The radius within which the creature will be alerted to from a player.
359
+ * Defaults to CREATURE_DEFAULT_ALERTED_DISTANCE_SQ
360
+ */
361
+ alertedRadius?: number;
344
362
  }
345
363
  export interface ICreatureLoot {
346
364
  item: ItemType;
347
365
  chance?: number;
348
366
  }
367
+ export declare enum PettingType {
368
+ Allowed = 0,
369
+ NotAllowed = 1,
370
+ Attack = 2
371
+ }
349
372
  export interface IWaste {
350
373
  event: TileEventType;
351
374
  timer: number;
@@ -443,13 +466,14 @@ export interface ICreatureEvents extends IEntityWithStatsEvents, IEntityAiEvents
443
466
  export declare const CREATURE_WANDER_FEARLESS_CHANCE: number;
444
467
  /** The chance to start wandering after being paused, if scared */
445
468
  export declare const CREATURE_WANDER_SCARED_CHANCE: number;
446
- export declare const CREATURE_FLEE_DISTANCE_SQ: number;
469
+ export declare const CREATURE_DEFAULT_ALERTED_DISTANCE_SQ: number;
447
470
  export declare const TAMED_CREATURE_FOLLOW_CLOSE_DISTANCE = 1;
448
471
  export declare const TAMED_CREATURE_FOLLOW_FAR_DISTANCE = 6;
449
472
  export declare const settableAiTypes: Set<AiType>;
450
473
  export declare const CREATURE_MAX_HEALTH_BONUS_TAME = 1.1;
451
474
  export declare const CREATURE_MAX_HEALTH_BONUS_OFFER = 1.05;
452
475
  export declare const CREATURE_MAX_HEALTH_BONUS_PET = 1.01;
476
+ export declare const CREATURE_DEFAULT_TAME_DIFFICULTY_UNSET = 25;
453
477
  export interface ICreatureAttackOutcomeBase {
454
478
  enemy?: Human | Creature;
455
479
  willAttack: boolean;
@@ -22,9 +22,10 @@ import NoteManager from "@wayward/game/game/entity/player/note/NoteManager";
22
22
  import QuestManager from "@wayward/game/game/entity/player/quest/QuestManager";
23
23
  import { StatusApplicability } from "@wayward/game/game/entity/status/IStatus";
24
24
  import type { IslandId } from "@wayward/game/game/island/IIsland";
25
- import type { IContainer } from "@wayward/game/game/item/IItem";
25
+ import type { IContainer, IRecipe } from "@wayward/game/game/item/IItem";
26
26
  import { ItemType } from "@wayward/game/game/item/IItem";
27
27
  import type Item from "@wayward/game/game/item/Item";
28
+ import ItemRecipeRequirementChecker from "@wayward/game/game/item/ItemRecipeRequirementChecker";
28
29
  import { Prompt } from "@wayward/game/game/meta/prompt/IPrompt";
29
30
  import { Milestone } from "@wayward/game/game/milestones/IMilestone";
30
31
  import type { ReferenceType } from "@wayward/game/game/reference/IReferenceManager";
@@ -78,7 +79,10 @@ export default class Player extends Human<undefined, number, ReferenceType.Playe
78
79
  addItemMilestones(item: Item, context?: IActionContext): void;
79
80
  checkSkillMilestones(): void;
80
81
  private getUsableAction;
81
- protected onGetMovementIntent(): IMovementIntent | undefined;
82
+ /**
83
+ * Note: This is usually only ran on the server
84
+ */
85
+ getMovementIntent(): IMovementIntent;
82
86
  protected onCanMove(direction: Direction.Cardinal): false | undefined;
83
87
  protected onGetSkillGainMultiplier(skillType: SkillType): number | undefined;
84
88
  protected onDamage(damageInfo: IDamageInfo): void;
@@ -92,12 +96,23 @@ export default class Player extends Human<undefined, number, ReferenceType.Playe
92
96
  */
93
97
  private onLoadOrUnload;
94
98
  setup(spawnTile: Tile, respawn: boolean): void;
99
+ private setupEquipment;
100
+ private setupStats;
101
+ private setupSkills;
102
+ private setupRandomInventory;
103
+ private setupStatuses;
104
+ private setupItemsFromGroups;
105
+ private setupAdditionalItemsFromOptions;
106
+ private setupEquipmentFromOptions;
107
+ private setupSkillsFromOptions;
95
108
  protected onNoInput(): void;
96
109
  updateTables(source: string, options?: Partial<{
97
110
  allowCaching: boolean;
98
111
  skipDeferral: boolean;
99
112
  }>): void;
100
113
  private updateTablesInternal;
114
+ shouldDiscoverRecipe(recipe: IRecipe, checker: ItemRecipeRequirementChecker): boolean;
115
+ private isRecipeDiscovered;
101
116
  private updateCraftTable;
102
117
  updateDismantleTable(adjacentContainers?: IContainer[], force?: boolean): void;
103
118
  getName(includeTitle?: boolean): TranslationImpl;
@@ -16,5 +16,6 @@ export interface IQuest {
16
16
  type: QuestType;
17
17
  requirements: IQuestRequirement[];
18
18
  complete: boolean;
19
+ skipped: boolean;
19
20
  reset?(): void;
20
21
  }
@@ -126,8 +126,6 @@ export declare abstract class InfoProvider extends EventEmitter.Host<IInfoProvid
126
126
  * Call when this info provider should be removed.
127
127
  */
128
128
  remove(): this;
129
- onStoppingPlay(): void;
130
- onPreMoveToIsland(): void;
131
129
  private _shouldDisplayWhenEmpty;
132
130
  protected shouldDisplayWhenEmpty(): boolean;
133
131
  setShouldDisplayWhenEmpty(shouldDisplayWhenEmpty?: boolean): this;
@@ -9,7 +9,9 @@
9
9
  * https://github.com/WaywardGame/types/wiki
10
10
  */
11
11
  import { InfoProvider } from "@wayward/game/game/inspection/InfoProvider";
12
- import type { IHasMagic, MagicalNormalPropertyTypes, MagicalSubPropertyTypes } from "@wayward/game/game/magic/MagicalPropertyManager";
12
+ import type { MagicalNormalPropertyTypes } from "@wayward/game/game/magic/IMagicalProperty";
13
+ import type { MagicalSubPropertyTypes } from "@wayward/game/game/magic/IMagicalProperty";
14
+ import type { IHasMagic } from "@wayward/game/game/magic/IMagicalProperty";
13
15
  import type { MagicalPropertyTypeSubTypeMap } from "@wayward/game/game/magic/MagicalPropertyType";
14
16
  import type { DictionaryEnum } from "@wayward/game/language/DictionaryMap";
15
17
  import type { TextContext } from "@wayward/game/language/ITranslation";
@@ -8,6 +8,6 @@
8
8
  * Wayward is a copyrighted and licensed work. Modification and/or distribution of any source files is prohibited. If you wish to modify the game in any way, please refer to the modding guide:
9
9
  * https://github.com/WaywardGame/types/wiki
10
10
  */
11
- import type { IHasMagic } from "@wayward/game/game/magic/MagicalPropertyManager";
11
+ import type { IHasMagic } from "@wayward/game/game/magic/IMagicalProperty";
12
12
  import type TranslationImpl from "@wayward/game/language/impl/TranslationImpl";
13
13
  export default function (magicalThingy: IHasMagic): TranslationImpl | undefined;