s2cfgtojson 4.1.0 → 4.1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.mts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "s2cfgtojson",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
4
4
  "description": "Converts Stalker 2 Cfg file into POJOs",
5
5
  "keywords": [
6
6
  "stalker",
package/types.mts CHANGED
@@ -2223,6 +2223,7 @@ export type SpawnActorPrototype = GetStructType<{
2223
2223
  CorpseStashSID: string;
2224
2224
  DeadPose: string;
2225
2225
  AmmoCount: number;
2226
+ OverrideFaction: Faction;
2226
2227
  OverrideRank: boolean;
2227
2228
  HP: number;
2228
2229
  DamageMultiplier: number;
@@ -2237,6 +2238,7 @@ export type SpawnActorPrototype = GetStructType<{
2237
2238
  SpawnedPrototypeSID: string;
2238
2239
  }[];
2239
2240
  RespawnMembers: boolean;
2241
+ IsLootedOnDifficulties: string;
2240
2242
  }>;
2241
2243
 
2242
2244
  type Faction = string;