@wayward/types 2.11.4-beta.dev.20220224.1 → 2.11.4-beta.dev.20220225.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/entity/action/IAction.d.ts +7 -7
- package/definitions/game/game/entity/creature/Creature.d.ts +2 -1
- package/definitions/game/game/entity/creature/ICreature.d.ts +4 -0
- package/definitions/game/game/meta/prompt/IPrompt.d.ts +100 -97
- package/definitions/game/game/meta/prompt/PromptDescriptions.d.ts +81 -78
- package/definitions/game/language/dictionary/Message.d.ts +718 -710
- package/package.json +1 -1
|
@@ -282,12 +282,12 @@ export declare enum ActionArgument {
|
|
|
282
282
|
ItemArray = 21,
|
|
283
283
|
ItemArrayInventory = 22,
|
|
284
284
|
ItemArrayNearby = 23,
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
285
|
+
ItemInventory = 24,
|
|
286
|
+
ItemNearby = 25,
|
|
287
|
+
ItemType = 26,
|
|
288
|
+
NPC = 27,
|
|
289
|
+
NPCNearby = 28,
|
|
290
|
+
OptionalItemArrayNearby = 29,
|
|
291
291
|
Player = 30,
|
|
292
292
|
Quality = 31,
|
|
293
293
|
RecipeType = 32,
|
|
@@ -322,12 +322,12 @@ export declare type ActionArgumentTypeMap<X extends ActionArgument> = {
|
|
|
322
322
|
[ActionArgument.ItemArray]: Item[];
|
|
323
323
|
[ActionArgument.ItemArrayInventory]: Item[];
|
|
324
324
|
[ActionArgument.ItemArrayNearby]: Item[];
|
|
325
|
-
[ActionArgument.OptionalItemArrayNearby]: Array<Item | undefined>;
|
|
326
325
|
[ActionArgument.ItemInventory]: Item;
|
|
327
326
|
[ActionArgument.ItemNearby]: Item;
|
|
328
327
|
[ActionArgument.ItemType]: ItemType;
|
|
329
328
|
[ActionArgument.NPC]: NPC;
|
|
330
329
|
[ActionArgument.NPCNearby]: NPC;
|
|
330
|
+
[ActionArgument.OptionalItemArrayNearby]: Array<Item | undefined>;
|
|
331
331
|
[ActionArgument.Player]: Player;
|
|
332
332
|
[ActionArgument.Quality]: Quality;
|
|
333
333
|
[ActionArgument.RecipeType]: RecipeType;
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
*/
|
|
11
11
|
import { SfxType } from "audio/IAudio";
|
|
12
12
|
import type { IEventEmitter } from "event/EventEmitter";
|
|
13
|
-
import type { ICreatureDescription, ICreatureEvents, IDamageInfo } from "game/entity/creature/ICreature";
|
|
13
|
+
import type { ICreatureDescription, ICreatureEvents, IDamageInfo, IHitch } from "game/entity/creature/ICreature";
|
|
14
14
|
import { CreatureType } from "game/entity/creature/ICreature";
|
|
15
15
|
import Entity from "game/entity/Entity";
|
|
16
16
|
import type Human from "game/entity/Human";
|
|
@@ -105,6 +105,7 @@ export default class Creature extends Entity implements IUnserializedCallback, I
|
|
|
105
105
|
protected preMove(fromX: number, fromY: number, fromZ: number, fromTile: ITile, toX: number, toY: number, toZ: number, toTile: ITile): boolean | void | undefined;
|
|
106
106
|
protected onStatChange(stat: IStat, oldValue: number, info: IStatChangeInfo): void;
|
|
107
107
|
findPath(target: IVector2, maxNodesChecked?: number, ignoreHuman?: Human): IVector2[] | undefined;
|
|
108
|
+
getHitchingPostsAround(): IHitch;
|
|
108
109
|
/**
|
|
109
110
|
* Check creature move with a multiplayer sync check
|
|
110
111
|
* @param source Provided when the check is running in a sync environment (NOT CLIENTSIDE)
|
|
@@ -21,103 +21,106 @@ export declare enum Prompt {
|
|
|
21
21
|
GameCannotRunGlError = 3,
|
|
22
22
|
GameCannotRunIndexedDbError = 4,
|
|
23
23
|
GameConfirmationActionOnFire = 5,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
24
|
+
GameConfirmationActionOnFirePlural = 6,
|
|
25
|
+
GameConfirmationActionInLava = 7,
|
|
26
|
+
GameConfirmationActionInLavaPlural = 8,
|
|
27
|
+
GameConfirmationDestroyOnGather = 9,
|
|
28
|
+
GameConfirmationDroppingContainer = 10,
|
|
29
|
+
GameConfirmationRestWithEquippedFireSource = 11,
|
|
30
|
+
GameContainerNotFull = 12,
|
|
31
|
+
GameDangerousStep = 13,
|
|
32
|
+
GameDesalinationNoNeed = 14,
|
|
33
|
+
GameExtinguishWaterStill = 15,
|
|
34
|
+
GameItemMayBeDestroyedInCraft = 16,
|
|
35
|
+
GameItemMayCauseBurns = 17,
|
|
36
|
+
GameItemsMayBeDestroyedOnUse = 18,
|
|
37
|
+
GameLoadFailure = 19,
|
|
38
|
+
GameNoHealingRequired = 20,
|
|
39
|
+
GameNoSaveOnDeath = 21,
|
|
40
|
+
GamePickUpStillWithWater = 22,
|
|
41
|
+
GameReleaseCreature = 23,
|
|
42
|
+
GameRenameCreature = 24,
|
|
43
|
+
GameRenameDoodad = 25,
|
|
44
|
+
GameRenameItem = 26,
|
|
45
|
+
GameReturnToTitleScreen = 27,
|
|
46
|
+
GameReturnToTitleScreenChallenge = 28,
|
|
47
|
+
GameSailAwayEnd = 29,
|
|
48
|
+
GameSailAwayReturnable = 30,
|
|
49
|
+
GameSaveFailure = 31,
|
|
50
|
+
GameIslandTravelConfirmation = 32,
|
|
51
|
+
GameWellConvert = 33,
|
|
52
|
+
GameSolarStillWontWorkInTemperature = 34,
|
|
53
|
+
GameSolarStillWontWorkInCave = 35,
|
|
54
|
+
GamePause = 36,
|
|
55
|
+
GameWin = 37,
|
|
56
|
+
GameOver = 38,
|
|
57
|
+
GameHelp = 39,
|
|
58
|
+
GameMultiplayerOptions = 40,
|
|
59
|
+
MenuCharacterCreationImportCharacterFailure = 41,
|
|
60
|
+
MenuCharacterSelectionDeleteCharacter = 42,
|
|
61
|
+
MenuGameEndGhostDeleteSave = 43,
|
|
62
|
+
MenuGameEndWonDeleteSave = 44,
|
|
63
|
+
MenuGameEndReturnToTitleScreen = 45,
|
|
64
|
+
MenuGameEndReturnToTitleScreenChallengeMultiplayer = 46,
|
|
65
|
+
MenuGameEndReturnToTitleScreenChallenge = 47,
|
|
66
|
+
MenuGameEndReturnToTitleScreenMultiplayer = 48,
|
|
67
|
+
MenuLoadGameDeleteSave = 49,
|
|
68
|
+
MenuLoadGameDeleteSaves = 50,
|
|
69
|
+
MenuLoadGameExportType = 51,
|
|
70
|
+
MenuLoadGameImportSaveFailure = 52,
|
|
71
|
+
MenuLoadGameMissingMod = 53,
|
|
72
|
+
MenuLoadGameOldBuildTime = 54,
|
|
73
|
+
MenuLoadGamePublishError = 55,
|
|
74
|
+
MenuMainWelcomeToVersion = 56,
|
|
75
|
+
MenuMainOldVersionWarning = 57,
|
|
76
|
+
MenuModsConfirmPublish = 58,
|
|
77
|
+
MenuModsConfirmPublishUpdate = 59,
|
|
78
|
+
MenuModsModEnableMultipleLanguages = 60,
|
|
79
|
+
MenuModsModEnableUseLanguage = 61,
|
|
80
|
+
MenuModsPublishedReminderRequiredModsOnWorkshop = 62,
|
|
81
|
+
MenuModsPublishError = 63,
|
|
82
|
+
MenuModsPublishUpdateError = 64,
|
|
83
|
+
MenuModsInfoMissingDependencies = 65,
|
|
84
|
+
MenuModsConfirmEnableDisabledDependencies = 66,
|
|
85
|
+
MenuModsConfirmDisableDependents = 67,
|
|
86
|
+
MenuModsConfirmUninstallMod = 68,
|
|
87
|
+
MenuModsUnloadableSaveGameMod = 69,
|
|
88
|
+
MenuModsSubmenuEditInternalModsModsListChangeReload = 70,
|
|
89
|
+
MenuMultiplayerCannotJoinFailedToLoadMods = 71,
|
|
90
|
+
MenuNewGameTooManySaves = 72,
|
|
91
|
+
MenuCustomGameOptionsConfirmImport = 73,
|
|
92
|
+
MenuCustomGameOptionsImportFailure = 74,
|
|
93
|
+
MenuMilestoneModifiersConfirmImport = 75,
|
|
94
|
+
MenuMilestoneModifiersImportFailure = 76,
|
|
95
|
+
MenuOptionsReloadGame = 77,
|
|
96
|
+
MenuOptionsConfirmUnlockMilestones = 78,
|
|
97
|
+
MenuOptionsConfirmUnlockRecipes = 79,
|
|
98
|
+
MenuOptionsSaveDataClearAll = 80,
|
|
99
|
+
MenuOptionsSaveDataClearCharacters = 81,
|
|
100
|
+
MenuOptionsSaveDataClearHighscores = 82,
|
|
101
|
+
MenuOptionsSaveDataClearMilestones = 83,
|
|
102
|
+
MenuOptionsSaveDataClearOptions = 84,
|
|
103
|
+
MenuOptionsSaveDataClearSaves = 85,
|
|
104
|
+
MenuOptionsSaveDataClearCraftingRecipes = 86,
|
|
105
|
+
MenuOptionsSaveDataClearBindings = 87,
|
|
106
|
+
MenuOptionsConfirmImportGlobalData = 88,
|
|
107
|
+
MenuPauseGhostKeepSave = 89,
|
|
108
|
+
MenuPauseReturnToTitleScreen = 90,
|
|
109
|
+
MenuPauseReturnToTitleScreenChallenge = 91,
|
|
110
|
+
MenuPauseReturnToTitleScreenChallengeMultiplayer = 92,
|
|
111
|
+
MenuPauseReturnToTitleScreenMultiplayer = 93,
|
|
112
|
+
MultiplayerFailedToConnect = 94,
|
|
113
|
+
MultiplayerRestartServerAfterLoadingSave = 95,
|
|
114
|
+
MultiplayerDisconnect = 96,
|
|
115
|
+
MultiplayerDisconnectRejoin = 97,
|
|
116
|
+
SteamworksURLOpenedInBrowser = 98,
|
|
117
|
+
SteamworksWorkshopOpenedInBrowser = 99,
|
|
118
|
+
SteamworksModWithNameAlreadyExists = 100,
|
|
119
|
+
SteamworksModImportSaveGameFailure = 101,
|
|
120
|
+
SteamworksModImportedSaveGame = 102,
|
|
121
|
+
SteamworksOpenFolderFailure = 103,
|
|
122
|
+
SteamworksModPublishModJsonUpdateFailed = 104,
|
|
123
|
+
UiSaveDrop = 105
|
|
121
124
|
}
|
|
122
125
|
export declare enum PromptType {
|
|
123
126
|
Info = 0,
|
|
@@ -24,77 +24,77 @@ declare const promptDescriptions: {
|
|
|
24
24
|
3: import("game/meta/prompt/IPrompt").IPromptChoiceDescription<any[], InterruptChoice.Quit[]>;
|
|
25
25
|
4: import("game/meta/prompt/IPrompt").IPromptChoiceDescription<any[], InterruptChoice.Quit[]>;
|
|
26
26
|
5: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[objectName: Text, gatherText: Text]>;
|
|
27
|
-
6: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[
|
|
28
|
-
7: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
29
|
-
8: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[
|
|
30
|
-
9: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
31
|
-
10: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[
|
|
32
|
-
11: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
27
|
+
6: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[objectName: Text, gatherText: Text]>;
|
|
28
|
+
7: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[objectName: Text, gatherText: Text]>;
|
|
29
|
+
8: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[objectName: Text, gatherText: Text]>;
|
|
30
|
+
9: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[growthStage: Text | undefined, objectName: Text]>;
|
|
31
|
+
10: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
32
|
+
11: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[actionVerb: Text, objectName: Text, actionNoun: Text]>;
|
|
33
33
|
12: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
34
|
-
13: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[
|
|
34
|
+
13: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[objectName: Text, gatherText: Text]>;
|
|
35
35
|
14: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
36
|
-
15: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[
|
|
37
|
-
16: import("game/meta/prompt/IPrompt").
|
|
36
|
+
15: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
37
|
+
16: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[breakingItemsList: Text]>;
|
|
38
38
|
17: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
39
|
-
18: import("game/meta/prompt/IPrompt").
|
|
40
|
-
19: import("game/meta/prompt/IPrompt").
|
|
41
|
-
20: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[
|
|
42
|
-
21: import("game/meta/prompt/IPrompt").
|
|
43
|
-
22: import("game/meta/prompt/IPrompt").
|
|
44
|
-
23: import("game/meta/prompt/IPrompt").
|
|
45
|
-
24: import("game/meta/prompt/IPrompt").
|
|
46
|
-
25: import("game/meta/prompt/IPrompt").
|
|
47
|
-
26: import("game/meta/prompt/IPrompt").
|
|
39
|
+
18: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[breakingItemsList: Text]>;
|
|
40
|
+
19: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
41
|
+
20: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
42
|
+
21: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
43
|
+
22: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
44
|
+
23: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[creatureName: Text]>;
|
|
45
|
+
24: import("game/meta/prompt/IPrompt").IPromptInputDescription<[baseName?: TranslationImpl | undefined, placeholder?: TranslationImpl | undefined, name?: string | ISerializedTranslation | undefined]>;
|
|
46
|
+
25: import("game/meta/prompt/IPrompt").IPromptInputDescription<[baseName?: TranslationImpl | undefined, placeholder?: TranslationImpl | undefined, name?: string | ISerializedTranslation | undefined]>;
|
|
47
|
+
26: import("game/meta/prompt/IPrompt").IPromptInputDescription<[baseName?: TranslationImpl | undefined, placeholder?: TranslationImpl | undefined, name?: string | ISerializedTranslation | undefined]>;
|
|
48
48
|
27: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
49
|
-
28: import("game/meta/prompt/IPrompt").
|
|
50
|
-
29: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[
|
|
49
|
+
28: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
50
|
+
29: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
51
51
|
30: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
52
|
-
31: import("game/meta/prompt/IPrompt").
|
|
53
|
-
32: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
54
|
-
33: import("game/meta/prompt/IPrompt").
|
|
55
|
-
34: import("game/meta/prompt/IPrompt").
|
|
56
|
-
35: import("game/meta/prompt/IPrompt").
|
|
57
|
-
36: import("game/meta/prompt/IPrompt").IPromptMenuDescription<MenuId.
|
|
58
|
-
37: import("game/meta/prompt/IPrompt").IPromptMenuDescription<MenuId.
|
|
59
|
-
38: import("game/meta/prompt/IPrompt").
|
|
60
|
-
39: import("game/meta/prompt/IPrompt").
|
|
61
|
-
40: import("game/meta/prompt/IPrompt").
|
|
62
|
-
41: import("game/meta/prompt/IPrompt").
|
|
63
|
-
42: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
64
|
-
43: import("game/meta/prompt/IPrompt").
|
|
65
|
-
44: import("game/meta/prompt/IPrompt").
|
|
66
|
-
45: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[
|
|
67
|
-
46: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[
|
|
68
|
-
47: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
50: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
53: import("game/meta/prompt/IPrompt").
|
|
75
|
-
54: import("game/meta/prompt/IPrompt").
|
|
76
|
-
55: import("game/meta/prompt/IPrompt").
|
|
77
|
-
56: import("game/meta/prompt/IPrompt").
|
|
78
|
-
57: import("game/meta/prompt/IPrompt").
|
|
52
|
+
31: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
53
|
+
32: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[isGhost: boolean]>;
|
|
54
|
+
33: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
55
|
+
34: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
56
|
+
35: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
57
|
+
36: import("game/meta/prompt/IPrompt").IPromptMenuDescription<MenuId.Pause, []>;
|
|
58
|
+
37: import("game/meta/prompt/IPrompt").IPromptMenuDescription<MenuId.GameEnd, []>;
|
|
59
|
+
38: import("game/meta/prompt/IPrompt").IPromptMenuDescription<MenuId.GameEnd, []>;
|
|
60
|
+
39: import("game/meta/prompt/IPrompt").IPromptMenuDescription<MenuId.Help, [(HelpArticle | undefined)?]>;
|
|
61
|
+
40: import("game/meta/prompt/IPrompt").IPromptMenuDescription<MenuId.Pause, []>;
|
|
62
|
+
41: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
63
|
+
42: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[name: string]>;
|
|
64
|
+
43: import("game/meta/prompt/IPrompt").IPromptChoiceDescription<any[], (InterruptChoice.Cancel | InterruptChoice.NoWarn | InterruptChoice.Yes)[]>;
|
|
65
|
+
44: import("game/meta/prompt/IPrompt").IPromptChoiceDescription<any[], (InterruptChoice.Cancel | InterruptChoice.NoWarn | InterruptChoice.Yes)[]>;
|
|
66
|
+
45: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
67
|
+
46: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[playersConnected: number]>;
|
|
68
|
+
47: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
69
|
+
48: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[playersConnected: number]>;
|
|
70
|
+
49: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[name?: string | undefined]>;
|
|
71
|
+
50: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[deleteCount: number]>;
|
|
72
|
+
52: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[succeeded: Text[], failed: Text[], unknownErrors: boolean]>;
|
|
73
|
+
51: import("game/meta/prompt/IPrompt").IPromptChoiceDescription<any[], (InterruptChoice.Cancel | InterruptChoice.LocalFile | InterruptChoice.SteamWorkshop)[]>;
|
|
74
|
+
53: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[missingMods: string[], disabledMods: string[]]>;
|
|
75
|
+
54: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[saveBuildTime: string, gamebuildTime: string]>;
|
|
76
|
+
55: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[err: Text]>;
|
|
77
|
+
56: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[versionString: string]>;
|
|
78
|
+
57: import("game/meta/prompt/IPrompt").IPromptChoiceDescription<[lastVersionString: string, thisVersionString: string], [InterruptChoice.ContinueAnyway, InterruptChoice.OpenSaveFolderAndQuit]>;
|
|
79
79
|
58: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
80
|
-
59: import("game/meta/prompt/IPrompt").
|
|
81
|
-
60: import("game/meta/prompt/IPrompt").
|
|
82
|
-
61: import("game/meta/prompt/IPrompt").
|
|
83
|
-
62: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[
|
|
84
|
-
63: import("game/meta/prompt/IPrompt").
|
|
85
|
-
64: import("game/meta/prompt/IPrompt").
|
|
86
|
-
65: import("game/meta/prompt/IPrompt").
|
|
87
|
-
66: import("game/meta/prompt/IPrompt").
|
|
88
|
-
67: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
89
|
-
68: import("game/meta/prompt/IPrompt").
|
|
90
|
-
69: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
80
|
+
59: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
81
|
+
60: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
82
|
+
61: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
83
|
+
62: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
84
|
+
63: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[error?: string | undefined]>;
|
|
85
|
+
64: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[error?: string | undefined]>;
|
|
86
|
+
65: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[modName: string, dependencies: Text]>;
|
|
87
|
+
66: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[modName: string, dependencies: Text]>;
|
|
88
|
+
67: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[modName: string, dependents: Text]>;
|
|
89
|
+
68: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[modName: string]>;
|
|
90
|
+
69: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[folderName: string]>;
|
|
91
91
|
70: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
92
|
-
71: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
93
|
-
72: import("game/meta/prompt/IPrompt").
|
|
94
|
-
73: import("game/meta/prompt/IPrompt").
|
|
95
|
-
74: import("game/meta/prompt/IPrompt").
|
|
92
|
+
71: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[modErrors: Text[]]>;
|
|
93
|
+
72: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
94
|
+
73: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
95
|
+
74: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
96
96
|
75: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
97
|
-
76: import("game/meta/prompt/IPrompt").
|
|
97
|
+
76: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
98
98
|
77: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
99
99
|
78: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
100
100
|
79: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
@@ -104,23 +104,26 @@ declare const promptDescriptions: {
|
|
|
104
104
|
83: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
105
105
|
84: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
106
106
|
85: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
107
|
-
86: import("game/meta/prompt/IPrompt").
|
|
107
|
+
86: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
108
108
|
87: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
109
|
-
88: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[
|
|
110
|
-
89: import("game/meta/prompt/IPrompt").
|
|
111
|
-
90: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[
|
|
112
|
-
91: import("game/meta/prompt/IPrompt").
|
|
113
|
-
92: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
114
|
-
93: import("game/meta/prompt/IPrompt").
|
|
115
|
-
94: import("game/meta/prompt/IPrompt").
|
|
116
|
-
95: import("game/meta/prompt/IPrompt").
|
|
117
|
-
96: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
118
|
-
97: import("game/meta/prompt/IPrompt").
|
|
119
|
-
98: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[
|
|
120
|
-
99: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[
|
|
109
|
+
88: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
110
|
+
89: import("game/meta/prompt/IPrompt").IPromptChoiceDescription<any[], (InterruptChoice.Cancel | InterruptChoice.NoWarn | InterruptChoice.Yes)[]>;
|
|
111
|
+
90: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
112
|
+
91: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[isGhostAndNotServer: boolean]>;
|
|
113
|
+
92: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[playersConnected: number]>;
|
|
114
|
+
93: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[playersConnected: number, isGhostAndNotServer: boolean]>;
|
|
115
|
+
94: import("game/meta/prompt/IPrompt").IPromptChoiceDescription<any[], (InterruptChoice.Cancel | InterruptChoice.Retry)[]>;
|
|
116
|
+
95: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[]>;
|
|
117
|
+
96: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[type: TranslationImpl, reason?: TranslationImpl | undefined]>;
|
|
118
|
+
97: import("game/meta/prompt/IPrompt").IPromptConfirmDescription<[type: TranslationImpl, reason?: TranslationImpl | undefined]>;
|
|
119
|
+
98: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
120
|
+
99: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
121
121
|
100: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
122
|
-
101: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[
|
|
123
|
-
102: import("game/meta/prompt/IPrompt").
|
|
122
|
+
101: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[modName: string]>;
|
|
123
|
+
102: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[modName: string]>;
|
|
124
|
+
103: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[]>;
|
|
125
|
+
104: import("game/meta/prompt/IPrompt").IPromptInfoDescription<[error: string | undefined, publishedFileId: string]>;
|
|
126
|
+
105: import("game/meta/prompt/IPrompt").IPromptChoiceDescription<any[], never[]>;
|
|
124
127
|
};
|
|
125
128
|
declare const _default: Record<Prompt, PromptDescription<any[]>>;
|
|
126
129
|
export default _default;
|