s2cfgtojson 7.0.12 → 7.0.13
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 +5 -9
package/package.json
CHANGED
package/types.mts
CHANGED
|
@@ -2381,13 +2381,7 @@ export type CharacterWeaponSettingsPrototype = GetStructType<{
|
|
|
2381
2381
|
export type CharacterWeaponSettingsPrototypeCombatSynchronizationScore =
|
|
2382
2382
|
GetStructType<NPCWeaponSettingsPrototypeCombatSynchronizationScoreItem[]>;
|
|
2383
2383
|
|
|
2384
|
-
export type CluePrototype =
|
|
2385
|
-
DefaultValue: string;
|
|
2386
|
-
Description: string;
|
|
2387
|
-
ID: number;
|
|
2388
|
-
SID: string;
|
|
2389
|
-
Type: EGlobalVariableType;
|
|
2390
|
-
}>;
|
|
2384
|
+
export type CluePrototype = GlobalVariablePrototype;
|
|
2391
2385
|
|
|
2392
2386
|
export type CombatSynchronizationPrototype = GetStructType<
|
|
2393
2387
|
{ [k in Rank]: CombatSynchronizationPrototypeMaster } & {
|
|
@@ -11306,8 +11300,10 @@ export type SpawnActorPrototypeVolumetricCoverRestrictions = GetStructType<{
|
|
|
11306
11300
|
|
|
11307
11301
|
export type SpawnActorPrototypeWeather = GetStructType<EWeather[]>;
|
|
11308
11302
|
|
|
11309
|
-
export type
|
|
11310
|
-
DefaultValue:
|
|
11303
|
+
export type GlobalVariablePrototype = GetStructType<{
|
|
11304
|
+
DefaultValue: VariableValue;
|
|
11305
|
+
Description: string;
|
|
11306
|
+
ID: number;
|
|
11311
11307
|
SID: string;
|
|
11312
11308
|
Type: EGlobalVariableType;
|
|
11313
11309
|
}>;
|