@wayward/types 2.15.2-beta.dev.20251029.1 → 2.15.2-beta.dev.20251031.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/curse/Curse.d.ts +2 -1
- package/definitions/game/game/curse/CurseEvent.d.ts +8 -0
- package/definitions/game/game/doodad/IDoodad.d.ts +1 -1
- package/definitions/game/game/entity/Human.d.ts +2 -1
- package/definitions/game/game/entity/action/actions/Consecrate.d.ts +1 -1
- package/definitions/game/game/entity/action/actions/StartFire.d.ts +0 -2
- package/definitions/game/game/entity/action/usable/actions/UsableActionsWorld.d.ts +1 -1
- package/definitions/game/game/item/IItem.d.ts +9 -20
- package/definitions/game/game/item/Items.d.ts +1 -9
- package/definitions/game/game/item/runes/RuneEffects.d.ts +58 -0
- package/definitions/game/game/magic/IMagicalProperty.d.ts +2 -0
- package/definitions/game/game/reference/IReferenceManager.d.ts +3 -0
- package/definitions/game/language/DictionaryMap.d.ts +12 -0
- package/definitions/game/language/dictionary/Message.d.ts +801 -800
- package/definitions/game/language/dictionary/UiTranslation.d.ts +663 -662
- package/definitions/game/language/english/item/ItemAffixes.d.ts +1 -1
- package/definitions/game/renderer/overlay/EffectRadiusOverlay.d.ts +3 -0
- package/definitions/game/save/upgrade/UpgradeVersionRegistry.d.ts +1 -1
- package/definitions/game/save/upgrade/versions/beta2.15.2/beta2.15.2-dev20251030.d.ts +12 -0
- package/definitions/game/save/upgrade/versions/beta2.15.2/beta2.15.2.d.ts +12 -0
- package/package.json +1 -1
- /package/definitions/game/game/item/{cooldown → runes}/InvokeCooldown.d.ts +0 -0
|
@@ -8,7 +8,7 @@
|
|
|
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
|
|
11
|
+
import { ItemTypeExtra } from "@wayward/game/game/item/IItem";
|
|
12
12
|
import { ItemType } from "@wayward/game/game/item/IItem";
|
|
13
13
|
declare const _default: {
|
|
14
14
|
affixesBeforeReformat: Map<ItemType | ItemTypeExtra, string>;
|
|
@@ -12,6 +12,7 @@ import type { IOverlayInfo } from "@wayward/game/game/tile/ITerrain";
|
|
|
12
12
|
import type Tile from "@wayward/game/game/tile/Tile";
|
|
13
13
|
import UniversalOverlay from "@wayward/game/renderer/overlay/UniversalOverlay";
|
|
14
14
|
import { DistanceType } from "@wayward/game/utilities/math/Vector2";
|
|
15
|
+
import Vector2 from "@wayward/game/utilities/math/Vector2";
|
|
15
16
|
import type { IColorFul } from "@wayward/utilities/Color";
|
|
16
17
|
export interface IEffectRadiusOverlayColor extends Partial<IColorFul> {
|
|
17
18
|
alpha?: number;
|
|
@@ -29,6 +30,8 @@ export default class EffectRadiusOverlay extends UniversalOverlay {
|
|
|
29
30
|
range: number;
|
|
30
31
|
color?: IEffectRadiusOverlayColor;
|
|
31
32
|
constructor();
|
|
33
|
+
get minVector(): Vector2;
|
|
34
|
+
get maxVector(): Vector2;
|
|
32
35
|
set(type: DistanceType, center: Tile, range: number, color?: IEffectRadiusOverlayColor): void;
|
|
33
36
|
unset(center: Tile): void;
|
|
34
37
|
protected generateOverlayInfo(tile: Tile, existingOverlay: IOverlayInfo | undefined): IOverlayInfo | undefined;
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*/
|
|
11
11
|
import { type IUpgradeVersion, type UpgradeParameters, type UpgradeType } from "@wayward/game/save/upgrade/UpgradeVersion";
|
|
12
12
|
import type UpgradesArray from "@wayward/game/save/upgrade/UpgradesArray";
|
|
13
|
-
import
|
|
13
|
+
import Version from "@wayward/utilities/Version";
|
|
14
14
|
import type { IBuildId } from "@wayward/hosts/shared/globalTypes";
|
|
15
15
|
export declare const BUILD_TIME_INTRODUCED_TIME: Date;
|
|
16
16
|
declare namespace UpgradeVersionRegistry {
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright 2011-2025 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
|
+
declare const _default: import("@wayward/game/save/upgrade/UpgradeVersion").IUpgradeVersionDefinition<unknown>;
|
|
12
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright 2011-2025 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
|
+
declare const _default: Record<string, import("@wayward/game/save/upgrade/UpgradeVersion").IUpgradeVersion>;
|
|
12
|
+
export default _default;
|
package/package.json
CHANGED
|
File without changes
|