@wayward/types 2.13.0-beta.dev.20230404.1 → 2.13.0-beta.dev.20230406.1

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 (43) hide show
  1. package/definitions/game/event/EventBuses.d.ts +4 -1
  2. package/definitions/game/event/EventManager.d.ts +4 -1
  3. package/definitions/game/game/doodad/Doodad.d.ts +4 -0
  4. package/definitions/game/game/entity/CombatStrengthManager.d.ts +3 -1
  5. package/definitions/game/game/entity/Entity.d.ts +2 -1
  6. package/definitions/game/game/entity/IEntity.d.ts +4 -0
  7. package/definitions/game/game/entity/IHuman.d.ts +5 -0
  8. package/definitions/game/game/entity/action/ActionsRegistration.d.ts +4 -4
  9. package/definitions/game/game/entity/action/actions/Attack.d.ts +0 -1
  10. package/definitions/game/game/entity/action/actions/Chop.d.ts +1 -1
  11. package/definitions/game/game/entity/action/actions/Dig.d.ts +1 -0
  12. package/definitions/game/game/entity/action/actions/Gather.d.ts +2 -2
  13. package/definitions/game/game/entity/action/actions/Harvest.d.ts +1 -1
  14. package/definitions/game/game/entity/action/actions/Mine.d.ts +1 -1
  15. package/definitions/game/game/entity/action/actions/helper/ConfirmGatherHarvest.d.ts +2 -1
  16. package/definitions/game/game/entity/creature/Creature.d.ts +6 -3
  17. package/definitions/game/game/entity/creature/ICreature.d.ts +33 -0
  18. package/definitions/game/game/entity/npc/npcs/Merchant.d.ts +2 -3
  19. package/definitions/game/game/entity/player/IPlayer.d.ts +0 -6
  20. package/definitions/game/game/inspection/infoProviders/LabelledValue.d.ts +2 -1
  21. package/definitions/game/game/inspection/infoProviders/creature/Aberrant.d.ts +3 -1
  22. package/definitions/game/game/inspection/infoProviders/creature/Difficulty.d.ts +2 -0
  23. package/definitions/game/game/inspection/infoProviders/creature/ResistancesAndVulnerabilities.d.ts +6 -1
  24. package/definitions/game/game/inspection/infoProviders/item/MagicalDamageType.d.ts +17 -0
  25. package/definitions/game/game/island/IIsland.d.ts +2 -2
  26. package/definitions/game/game/island/Island.d.ts +1 -8
  27. package/definitions/game/game/item/IItemManager.d.ts +2 -2
  28. package/definitions/game/game/item/Item.d.ts +2 -1
  29. package/definitions/game/game/magic/MagicalPropertyType.d.ts +4 -1
  30. package/definitions/game/game/milestones/IMilestone.d.ts +1 -1
  31. package/definitions/game/game/options/modifiers/milestone/modifiers/{Multidisciplined.d.ts → Versatile.d.ts} +8 -4
  32. package/definitions/game/game/tile/Tile.d.ts +14 -0
  33. package/definitions/game/game/tile/TileEventManager.d.ts +4 -1
  34. package/definitions/game/language/Translation.d.ts +1 -0
  35. package/definitions/game/language/dictionary/Misc.d.ts +2 -1
  36. package/definitions/game/language/dictionary/UiTranslation.d.ts +730 -725
  37. package/definitions/game/ui/Ui.d.ts +2 -0
  38. package/definitions/game/ui/input/Bindable.d.ts +166 -166
  39. package/definitions/game/ui/input/BindableManager.d.ts +2 -2
  40. package/definitions/game/ui/old/screens/InGameScreen.d.ts +2 -0
  41. package/definitions/game/ui/screen/screens/GameScreen.d.ts +0 -2
  42. package/definitions/game/utilities/math/Range.d.ts +3 -0
  43. package/package.json +1 -1
@@ -47,7 +47,10 @@ export default class TileEventManager extends ObjectManager<TileEvent, ITileMana
47
47
  getPuddles(tile: Tile): TileEvent[] | undefined;
48
48
  canGather(tile: Tile): TileEvent | undefined;
49
49
  updateAll(): void;
50
- fireOverflow(x: number, y: number, z: number): boolean;
50
+ /**
51
+ * Overflow fire around the tile
52
+ */
53
+ fireOverflow(tile: Tile): boolean;
51
54
  canPickUp(tile: Tile): TileEvent | undefined;
52
55
  blocksTile(tile: Tile): boolean;
53
56
  /**
@@ -113,6 +113,7 @@ declare module Translation {
113
113
  function colorizeImportance(importance: "primary" | "secondary"): Translation;
114
114
  function colorizeImportance(importance: "primary" | "secondary", text: string | IStringSection): IStringSection;
115
115
  function colorizeImportance(importance: "primary" | "secondary", text: IStringSection[]): IStringSection[];
116
+ function classes(...classes: string[]): TranslationImpl;
116
117
  const formatList: typeof formatListTranslation;
117
118
  const sorter: typeof ITranslationSorter.create;
118
119
  function nameOf(type: Dictionary, thing: number | {
@@ -141,5 +141,6 @@ export declare enum MiscTranslation {
141
141
  Thing = 39,
142
142
  Tilled = 40,
143
143
  Unknown = 41,
144
- UnknownItem = 42
144
+ UnknownItem = 42,
145
+ Classes = 43
145
146
  }