@wayward/types 2.14.0-beta.dev.20231226.1 → 2.14.0-beta.dev.20231228.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/game/Game.d.ts +1 -1
- package/definitions/game/game/entity/Human.d.ts +1 -0
- package/definitions/game/game/entity/action/ActionsRegistration.d.ts +49 -50
- package/definitions/game/game/entity/action/IAction.d.ts +49 -50
- package/definitions/game/game/entity/action/IActionContext.d.ts +11 -0
- package/definitions/game/game/entity/action/usable/UsableActionType.d.ts +7 -1
- package/definitions/game/game/entity/action/usable/actions/UsableActionsMain.d.ts +1 -1
- package/definitions/game/game/entity/action/usable/actions/UsableActionsWorld.d.ts +1 -1
- package/definitions/game/game/entity/action/usable/actions/doodad/IUsableActionsDoodad.d.ts +5 -1
- package/definitions/game/game/entity/action/usable/actions/item/UsableActionsItemMove.d.ts +2 -3
- package/definitions/game/game/entity/npc/NPC.d.ts +2 -0
- package/definitions/game/game/inspection/inspections/IslandInspection.d.ts +1 -1
- package/definitions/game/game/item/ItemManager.d.ts +1 -1
- package/definitions/game/game/meta/Loading.d.ts +0 -1
- package/definitions/game/language/dictionary/Message.d.ts +178 -177
- package/definitions/game/language/english/game/Actions.d.ts +1 -1
- package/definitions/game/ui/component/Component.d.ts +0 -1
- package/definitions/game/ui/component/Details.d.ts +7 -0
- package/definitions/game/ui/component/GameIcons.d.ts +1 -1
- package/definitions/game/ui/component/Loading.d.ts +11 -0
- package/definitions/game/ui/component/RangeChoiceList.d.ts +1 -2
- package/definitions/game/ui/input/Bindable.d.ts +40 -39
- package/definitions/game/ui/input/BindableManager.d.ts +2 -2
- package/definitions/game/ui/screen/screens/menu/menus/InterruptMenu.d.ts +1 -1
- package/definitions/game/ui/util/IInterrupt.d.ts +2 -1
- package/definitions/game/ui/util/InterruptFactory.d.ts +2 -1
- package/package.json +1 -1
- package/definitions/game/game/entity/action/actions/GrabAll.d.ts +0 -12
|
@@ -22,7 +22,7 @@ import type { Defense } from "@wayward/game/game/entity/IEntity";
|
|
|
22
22
|
import { DamageType } from "@wayward/game/game/entity/IEntity";
|
|
23
23
|
import type { Delay } from "@wayward/game/game/entity/IHuman";
|
|
24
24
|
import ActionExecutor from "@wayward/game/game/entity/action/ActionExecutor";
|
|
25
|
-
import
|
|
25
|
+
import IActionContext from "@wayward/game/game/entity/action/IActionContext";
|
|
26
26
|
import PlayerManager from "@wayward/game/game/entity/player/PlayerManager";
|
|
27
27
|
import IslandManager from "@wayward/game/game/island/IslandManager";
|
|
28
28
|
import { AutoSave } from "@wayward/game/game/meta/AutoSave";
|
|
@@ -377,6 +377,7 @@ export default abstract class Human<TypeType extends number = number, EntityRefe
|
|
|
377
377
|
getProducedTemperature(): number | undefined;
|
|
378
378
|
getInsulation(type: TempType): number;
|
|
379
379
|
resetStatTimers(type?: StatChangeCurrentTimerStrategy): void;
|
|
380
|
+
resetChangeTimers(): void;
|
|
380
381
|
private getBaseStatBonuses;
|
|
381
382
|
protected getApplicableStatusEffects(): Set<StatusType> | undefined;
|
|
382
383
|
private getSkillGainMultiplier;
|