s2cfgtojson 3.11.4 → 3.12.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.mts +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "s2cfgtojson",
3
- "version": "3.11.4",
3
+ "version": "3.12.0",
4
4
  "description": "Converts Stalker 2 Cfg file into POJOs",
5
5
  "keywords": [
6
6
  "stalker",
package/types.mts CHANGED
@@ -2230,6 +2230,13 @@ export type SpawnActorPrototype = GetStructType<{
2230
2230
  PsyNPCType: EPsyNPCType;
2231
2231
  CanBeWounded: boolean;
2232
2232
  AllowSpawnOnIsolatedNavMesh: boolean;
2233
+ SquadMembersQuestSIDs: string;
2234
+ SpawnInRadius: number;
2235
+ SpawnedGenericMembers: {
2236
+ SpawnedSquadMembersCount: number;
2237
+ SpawnedPrototypeSID: string;
2238
+ }[];
2239
+ RespawnMembers: boolean;
2233
2240
  }>;
2234
2241
 
2235
2242
  type Faction = string; // for performance
@@ -2490,6 +2497,7 @@ export type Condition = GetStructType<{
2490
2497
  Equipment: EMainHandEquipmentType;
2491
2498
  ConditionType: EQuestConditionType;
2492
2499
  ConditionComparance: EConditionComparance;
2500
+ TargetPlaceholder: string;
2493
2501
  LinkedNodePrototypeSID: string;
2494
2502
  CompletedNodeLauncherNames: never[];
2495
2503
  TargetNPC: string;