@wayward/types 2.14.0-beta.dev.20231208.1 → 2.14.0-beta.dev.20231210.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.
|
@@ -12,7 +12,7 @@ import { Quality } from "@wayward/game/game/IObject";
|
|
|
12
12
|
import type Entity from "@wayward/game/game/entity/Entity";
|
|
13
13
|
import type { IActionNotUsable, IActionUsable } from "@wayward/game/game/entity/action/IAction";
|
|
14
14
|
import { ActionArgumentCustom } from "@wayward/game/game/entity/action/argument/ActionArgumentCustom";
|
|
15
|
-
import
|
|
15
|
+
import { ItemType } from "@wayward/game/game/item/IItem";
|
|
16
16
|
import type Item from "@wayward/game/game/item/Item";
|
|
17
17
|
import Translation from "@wayward/game/language/Translation";
|
|
18
18
|
export interface IMoveItemFilterArgument {
|
|
@@ -119,38 +119,38 @@ export declare enum QualityTranslation {
|
|
|
119
119
|
export declare enum MiscTranslation {
|
|
120
120
|
AAndB = 0,
|
|
121
121
|
Aberrant = 1,
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
122
|
+
Add = 2,
|
|
123
|
+
AListAndB = 3,
|
|
124
|
+
AListOrB = 4,
|
|
125
|
+
AOrB = 5,
|
|
126
|
+
Binding = 6,
|
|
127
|
+
BindingInputModifierSeparator = 7,
|
|
128
|
+
BindingListSeparator = 8,
|
|
129
|
+
BindingMacroSeparator = 9,
|
|
130
|
+
BindingWhenHoveringItem = 10,
|
|
131
|
+
Classes = 11,
|
|
132
|
+
Colorize = 12,
|
|
133
|
+
ColorizeDamage = 13,
|
|
134
|
+
ColorizeMagical = 14,
|
|
135
|
+
ColorizeMessageType = 15,
|
|
136
|
+
ColorizePrimary = 16,
|
|
137
|
+
ColorizeQuality = 17,
|
|
138
|
+
ColorizeSecondary = 18,
|
|
139
|
+
ColorizeStat = 19,
|
|
140
|
+
ColorizeVulnerability = 20,
|
|
141
|
+
CorpseOf = 21,
|
|
142
|
+
CountThing = 22,
|
|
143
|
+
CreatureSubtitle = 23,
|
|
144
|
+
Dependency = 24,
|
|
145
|
+
Difference = 25,
|
|
146
|
+
EquipSlotEquipToYour = 26,
|
|
147
|
+
ExpressionSeparator = 27,
|
|
148
|
+
ItemMagicalProperty = 28,
|
|
149
|
+
ListItemSeparator = 29,
|
|
150
|
+
Merge = 30,
|
|
151
|
+
MergeSpaced = 31,
|
|
152
|
+
Multiply = 32,
|
|
153
|
+
Negate = 33,
|
|
154
154
|
NPCName = 34,
|
|
155
155
|
NPCNameUnmet = 35,
|
|
156
156
|
NumberSingleDecimal = 36,
|
|
@@ -74,7 +74,7 @@ export declare class ModInformation {
|
|
|
74
74
|
getIcon(): Promise<string | false | undefined>;
|
|
75
75
|
getFileText(fileName: string): Promise<string | undefined>;
|
|
76
76
|
get canPublish(): boolean;
|
|
77
|
-
canLoad(fromModsMenu?: boolean, count?: number): CanLoadState;
|
|
77
|
+
canLoad(fromModsMenu?: boolean, forMultiplayer?: boolean, count?: number): CanLoadState;
|
|
78
78
|
save(): void;
|
|
79
79
|
fillOutWorkshopMod(item?: IWorkshopItem): void;
|
|
80
80
|
setState(state: ModState, force?: boolean, unloaded?: boolean): Promise<boolean>;
|
package/package.json
CHANGED