@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.
- package/definitions/game/event/EventBuses.d.ts +4 -1
- package/definitions/game/event/EventManager.d.ts +4 -1
- package/definitions/game/game/doodad/Doodad.d.ts +4 -0
- package/definitions/game/game/entity/CombatStrengthManager.d.ts +3 -1
- package/definitions/game/game/entity/Entity.d.ts +2 -1
- package/definitions/game/game/entity/IEntity.d.ts +4 -0
- package/definitions/game/game/entity/IHuman.d.ts +5 -0
- package/definitions/game/game/entity/action/ActionsRegistration.d.ts +4 -4
- package/definitions/game/game/entity/action/actions/Attack.d.ts +0 -1
- package/definitions/game/game/entity/action/actions/Chop.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Dig.d.ts +1 -0
- package/definitions/game/game/entity/action/actions/Gather.d.ts +2 -2
- package/definitions/game/game/entity/action/actions/Harvest.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/Mine.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/helper/ConfirmGatherHarvest.d.ts +2 -1
- package/definitions/game/game/entity/creature/Creature.d.ts +6 -3
- package/definitions/game/game/entity/creature/ICreature.d.ts +33 -0
- package/definitions/game/game/entity/npc/npcs/Merchant.d.ts +2 -3
- package/definitions/game/game/entity/player/IPlayer.d.ts +0 -6
- package/definitions/game/game/inspection/infoProviders/LabelledValue.d.ts +2 -1
- package/definitions/game/game/inspection/infoProviders/creature/Aberrant.d.ts +3 -1
- package/definitions/game/game/inspection/infoProviders/creature/Difficulty.d.ts +2 -0
- package/definitions/game/game/inspection/infoProviders/creature/ResistancesAndVulnerabilities.d.ts +6 -1
- package/definitions/game/game/inspection/infoProviders/item/MagicalDamageType.d.ts +17 -0
- package/definitions/game/game/island/IIsland.d.ts +2 -2
- package/definitions/game/game/island/Island.d.ts +1 -8
- package/definitions/game/game/item/IItemManager.d.ts +2 -2
- package/definitions/game/game/item/Item.d.ts +2 -1
- package/definitions/game/game/magic/MagicalPropertyType.d.ts +4 -1
- package/definitions/game/game/milestones/IMilestone.d.ts +1 -1
- package/definitions/game/game/options/modifiers/milestone/modifiers/{Multidisciplined.d.ts → Versatile.d.ts} +8 -4
- package/definitions/game/game/tile/Tile.d.ts +14 -0
- package/definitions/game/game/tile/TileEventManager.d.ts +4 -1
- package/definitions/game/language/Translation.d.ts +1 -0
- package/definitions/game/language/dictionary/Misc.d.ts +2 -1
- package/definitions/game/language/dictionary/UiTranslation.d.ts +730 -725
- package/definitions/game/ui/Ui.d.ts +2 -0
- package/definitions/game/ui/input/Bindable.d.ts +166 -166
- package/definitions/game/ui/input/BindableManager.d.ts +2 -2
- package/definitions/game/ui/old/screens/InGameScreen.d.ts +2 -0
- package/definitions/game/ui/screen/screens/GameScreen.d.ts +0 -2
- package/definitions/game/utilities/math/Range.d.ts +3 -0
- 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
|
-
|
|
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 | {
|