@wayward/types 2.15.4-beta.dev.20260410.1 → 2.15.4-beta.dev.20260412.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/doodad/Doodad.d.ts +2 -1
- package/definitions/game/game/entity/Human.d.ts +3 -0
- package/definitions/game/game/entity/status/handler/BadTemperatureEffect.d.ts +1 -1
- package/definitions/game/game/inspection/infoProviders/item/use/ItemEquipInfo.d.ts +1 -3
- package/definitions/game/game/inspection/infoProviders/item/use/ItemSleepInfo.d.ts +26 -0
- package/definitions/game/game/magic/Endurance.d.ts +24 -0
- package/definitions/game/game/magic/Perpetuity.d.ts +13 -0
- package/definitions/game/game/temperature/ITemperature.d.ts +1 -0
- package/definitions/game/language/Translation.d.ts +4 -1
- package/definitions/game/language/dictionary/UiTranslation.d.ts +746 -744
- package/definitions/test/suite/unitTests/game/IslandTestUtilities.d.ts +1 -1
- package/definitions/test/suite/unitTests/game/ui/screen/screens/game/component/ItemComponent.spec.d.ts +13 -0
- package/package.json +1 -1
|
@@ -41,7 +41,7 @@ export declare namespace IslandTestUtilities {
|
|
|
41
41
|
* Clear / reset the the state of the player/world
|
|
42
42
|
*/
|
|
43
43
|
function beforeEach(context: TestRunContext, shouldMoveToNewIsland?: boolean): Promise<void>;
|
|
44
|
-
function createItems(...items: Array<ItemType | ItemTypeGroup>): Item[];
|
|
44
|
+
function createItems(quality: Quality, ...items: Array<ItemType | ItemTypeGroup>): Item[];
|
|
45
45
|
function createDoodad(doodadType: DoodadType): Doodad;
|
|
46
46
|
function createCreature(creatureType: CreatureType, z?: WorldZ): Creature;
|
|
47
47
|
function createNPC(npcType: NPCType, z?: WorldZ): NPC;
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
import type { TestConfig } from "@wayward/test";
|
|
12
|
+
import type { IPaths } from "@wayward/test/interfaces";
|
|
13
|
+
export default function (_paths: IPaths, _config: TestConfig): void;
|
package/package.json
CHANGED