s2cfgtojson 3.10.0 → 3.11.0
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/package.json +1 -1
- package/types.mts +15 -0
package/package.json
CHANGED
package/types.mts
CHANGED
|
@@ -2348,3 +2348,18 @@ export type VitalParams = GetStructType<{
|
|
|
2348
2348
|
StateTags: EStateTag[];
|
|
2349
2349
|
}[];
|
|
2350
2350
|
}>;
|
|
2351
|
+
|
|
2352
|
+
export type DialogChainPrototype = GetStructType<{
|
|
2353
|
+
SID: string;
|
|
2354
|
+
DLC: string;
|
|
2355
|
+
StartingDialogPrototypeSID: string;
|
|
2356
|
+
DialogOnTheGo: boolean;
|
|
2357
|
+
CanBeInterrupted: boolean;
|
|
2358
|
+
ContinueAfterInterrupt: boolean;
|
|
2359
|
+
IsInteractive: boolean;
|
|
2360
|
+
DialogMembers: {
|
|
2361
|
+
DialogMemberName: string;
|
|
2362
|
+
OptionalMember: boolean;
|
|
2363
|
+
}[];
|
|
2364
|
+
IsPCDialogMember: boolean;
|
|
2365
|
+
}>;
|