s2cfgtojson 7.0.10 → 7.0.11
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 +370 -396
package/package.json
CHANGED
package/types.mts
CHANGED
|
@@ -559,33 +559,32 @@ export type AbilityPrototypeTriggeredCooldownsItem = GetStructType<{
|
|
|
559
559
|
Duration: number;
|
|
560
560
|
}>;
|
|
561
561
|
|
|
562
|
-
export type Achievement = GetStructType<
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
>;
|
|
562
|
+
export type Achievement = GetStructType<{
|
|
563
|
+
AcceptableInterval: number;
|
|
564
|
+
AnomalyPrototypeSID: string;
|
|
565
|
+
ArmorSIDs: AchievementArmorSIDs;
|
|
566
|
+
BleedingThreshold: number;
|
|
567
|
+
Calibers: AchievementCalibers;
|
|
568
|
+
DrunkennessThreshold: number;
|
|
569
|
+
DrunknessThreshold: number;
|
|
570
|
+
FoodSet: AchievementFoodSet;
|
|
571
|
+
HeadshotDistance: number;
|
|
572
|
+
HungerThreshold: number;
|
|
573
|
+
Items: AchievementItems;
|
|
574
|
+
MarkerTypes: AchievementMarkerTypes;
|
|
575
|
+
MinHeight: number;
|
|
576
|
+
MinSquadSize: number;
|
|
577
|
+
MutantSID: string;
|
|
578
|
+
MutantsSID: AchievementArmorSIDs;
|
|
579
|
+
NumberOfWeapons: number;
|
|
580
|
+
PsyThreshold: number;
|
|
581
|
+
RadiationThreshold: number;
|
|
582
|
+
RequiredCount: number;
|
|
583
|
+
SleepinessThreshold: number;
|
|
584
|
+
TargetSID: string;
|
|
585
|
+
TimeWindow: number;
|
|
586
|
+
}> &
|
|
587
|
+
GetStructType<AchievementAchievementGoalsItem[]>;
|
|
589
588
|
|
|
590
589
|
export type AchievementAchievementGoalsItem = GetStructType<{
|
|
591
590
|
Goal: number;
|
|
@@ -1534,11 +1533,10 @@ export type ArtifactPrototypeAnomalyDamageDeflectionsItem = GetStructType<{
|
|
|
1534
1533
|
TimeToReduceCharge: number;
|
|
1535
1534
|
}>;
|
|
1536
1535
|
|
|
1537
|
-
export type ArtifactPrototypeEffectOnPickPrototypeSIDs = GetStructType<
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
>;
|
|
1536
|
+
export type ArtifactPrototypeEffectOnPickPrototypeSIDs = GetStructType<{
|
|
1537
|
+
ViewOffset: AIGlobalRelativeLocation;
|
|
1538
|
+
}> &
|
|
1539
|
+
GetStructType<string[]>;
|
|
1542
1540
|
|
|
1543
1541
|
export type ArtifactPrototypeEffectsDisplayTypes = GetStructType<
|
|
1544
1542
|
EEffectDisplayType[]
|
|
@@ -1743,49 +1741,48 @@ export type AssetLibraryUIWidgetBlueprint = GetStructType<{
|
|
|
1743
1741
|
WorldMapRegionMarkerClass: string;
|
|
1744
1742
|
}>;
|
|
1745
1743
|
|
|
1746
|
-
export type AttachMeshPrototype = GetStructType<
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
>;
|
|
1744
|
+
export type AttachMeshPrototype = GetStructType<{
|
|
1745
|
+
AdditionalCollisions: AttachMeshPrototypeAdditionalCollisions;
|
|
1746
|
+
AdditionalMesh: AttachMeshPrototypeAdditionalMesh;
|
|
1747
|
+
AnimPath: string;
|
|
1748
|
+
bHasClothSimulation: boolean;
|
|
1749
|
+
bHasExoskeleton: boolean;
|
|
1750
|
+
BodyMeshType: EBodyMeshType;
|
|
1751
|
+
bReceiveAttachedDecals: boolean;
|
|
1752
|
+
bReceiveDecals: boolean;
|
|
1753
|
+
bRenderCustomDepthPass: boolean;
|
|
1754
|
+
bShouldUseParentBound: boolean;
|
|
1755
|
+
bUseCustomLODSync: boolean;
|
|
1756
|
+
ComponentTags: NPCPrototypeSkills;
|
|
1757
|
+
FaceBlockingBlendMaskPrototypeSID: string;
|
|
1758
|
+
GroomBlockingMappingPrototypeSID: string;
|
|
1759
|
+
GroomPrototypeSID: string;
|
|
1760
|
+
IsSkeletal: boolean;
|
|
1761
|
+
ItemPrototypeSID: string;
|
|
1762
|
+
LODSyncMapping: AttachMeshPrototypeLODSyncMapping;
|
|
1763
|
+
MaterialCount: number;
|
|
1764
|
+
MaterialLODs: AttachMeshPrototypeMaterialLODs;
|
|
1765
|
+
Materials: AttachMeshPrototypeMaterials;
|
|
1766
|
+
MeshPath: string;
|
|
1767
|
+
MeshType: EMeshSubType;
|
|
1768
|
+
OffsetX: number;
|
|
1769
|
+
OffsetY: number;
|
|
1770
|
+
OffsetZ: number;
|
|
1771
|
+
ParentMeshPath: string;
|
|
1772
|
+
RotationPitch: number;
|
|
1773
|
+
RotationRoll: number;
|
|
1774
|
+
RotationYaw: number;
|
|
1775
|
+
ScaleX: number;
|
|
1776
|
+
ScaleY: number;
|
|
1777
|
+
ScaleZ: number;
|
|
1778
|
+
ShadowMeshPath: string;
|
|
1779
|
+
SID: string;
|
|
1780
|
+
SkeletonPath: string;
|
|
1781
|
+
SocketName: string;
|
|
1782
|
+
SyncOption: string;
|
|
1783
|
+
VoiceModulatorSID: string;
|
|
1784
|
+
}> &
|
|
1785
|
+
GetStructType<AttachMeshPrototypeTor_mer_01_a_PSYItem[]>;
|
|
1789
1786
|
|
|
1790
1787
|
export type AttachMeshPrototypeAdditionalCollisions = GetStructType<{
|
|
1791
1788
|
BoxCollisions: AttachMeshPrototypeBoxCollisions;
|
|
@@ -3830,14 +3827,13 @@ export type DialogPoolPrototype = GetStructType<{
|
|
|
3830
3827
|
|
|
3831
3828
|
export type DialogPoolPrototypeAvailableDialogs = StringArray;
|
|
3832
3829
|
|
|
3833
|
-
export type DialogPoolPrototypeDialogMemberRestrictions = GetStructType<
|
|
3834
|
-
|
|
3835
|
-
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
>;
|
|
3830
|
+
export type DialogPoolPrototypeDialogMemberRestrictions = GetStructType<{
|
|
3831
|
+
ExcludedFactions: DialogPoolPrototypeExcludedFactions;
|
|
3832
|
+
ExcludedObjPrototypes: DialogPoolPrototypeExcludedObjPrototypes;
|
|
3833
|
+
FactionRestrictions: DialogPoolPrototypeFactionRestrictions;
|
|
3834
|
+
ObjPrototypeRestrictions: DialogPoolPrototypeObjPrototypeRestrictions;
|
|
3835
|
+
}> &
|
|
3836
|
+
GetStructType<DialogPoolPrototypeDialogMemberRestrictionsItem[]>;
|
|
3841
3837
|
|
|
3842
3838
|
export type DialogPoolPrototypeDialogMemberRestrictionsItem = GetStructType<{
|
|
3843
3839
|
FactionRestrictions: DialogPoolPrototypeFactionRestrictions;
|
|
@@ -3913,14 +3909,13 @@ export type DialogPrototypeConditions = GetStructType<
|
|
|
3913
3909
|
DialogPrototypeConditionsItem[]
|
|
3914
3910
|
>;
|
|
3915
3911
|
|
|
3916
|
-
export type DialogPrototypeConditionsItem = GetStructType<
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
>;
|
|
3912
|
+
export type DialogPrototypeConditionsItem = GetStructType<{
|
|
3913
|
+
ConditionComparance: EConditionComparance;
|
|
3914
|
+
ConditionType: EQuestConditionType;
|
|
3915
|
+
NumericValue: number;
|
|
3916
|
+
TargetCharacter: string;
|
|
3917
|
+
}> &
|
|
3918
|
+
GetStructType<DialogPrototypeConditionsItemItem[]>;
|
|
3924
3919
|
|
|
3925
3920
|
export type DialogPrototypeConditionsItemItem = GetStructType<{
|
|
3926
3921
|
bTriggersByAnybody: boolean;
|
|
@@ -4022,14 +4017,13 @@ export type DialogPrototypeMoney = GetStructType<{
|
|
|
4022
4017
|
VariableValue: VariableValue;
|
|
4023
4018
|
}>;
|
|
4024
4019
|
|
|
4025
|
-
export type DialogPrototypeNextDialogOptions = GetStructType<
|
|
4026
|
-
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
>;
|
|
4020
|
+
export type DialogPrototypeNextDialogOptions = GetStructType<{
|
|
4021
|
+
False: DialogPrototypeFalse;
|
|
4022
|
+
General_PC_DeclineFastTravel_Random: DialogPrototypePripyat_return_to_topics;
|
|
4023
|
+
Pripyat_return_to_topics: DialogPrototypePripyat_return_to_topics;
|
|
4024
|
+
True: DialogPrototypeTrue;
|
|
4025
|
+
}> &
|
|
4026
|
+
GetStructType<DialogPrototypeNextDialogOptionsItem[]>;
|
|
4033
4027
|
|
|
4034
4028
|
export type DialogPrototypeNextDialogOptionsItem = GetStructType<{
|
|
4035
4029
|
AnswerTo: number;
|
|
@@ -4055,14 +4049,13 @@ export type DialogPrototypeTopicAvailabilityConditions = GetStructType<
|
|
|
4055
4049
|
DialogPrototypeTopicAvailabilityConditionsItem[]
|
|
4056
4050
|
>;
|
|
4057
4051
|
|
|
4058
|
-
export type DialogPrototypeTopicAvailabilityConditionsItem = GetStructType<
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
>;
|
|
4052
|
+
export type DialogPrototypeTopicAvailabilityConditionsItem = GetStructType<{
|
|
4053
|
+
ConditionComparance: EConditionComparance;
|
|
4054
|
+
ConditionType: EQuestConditionType;
|
|
4055
|
+
EmissionPrototypeSID: string;
|
|
4056
|
+
IncludePartialOverload: boolean;
|
|
4057
|
+
}> &
|
|
4058
|
+
GetStructType<DialogPrototypeTopicAvailabilityConditionsItemItem[]>;
|
|
4066
4059
|
|
|
4067
4060
|
export type DialogPrototypeTopicAvailabilityConditionsItemItem = GetStructType<{
|
|
4068
4061
|
bTriggersByAnybody: boolean;
|
|
@@ -5073,11 +5066,10 @@ export type GroomGeneratorPrototypeCategoryItem = GetStructType<{
|
|
|
5073
5066
|
Variations: GroomGeneratorPrototypeVariations;
|
|
5074
5067
|
}>;
|
|
5075
5068
|
|
|
5076
|
-
export type GroomGeneratorPrototypeCustomData = GetStructType<
|
|
5077
|
-
|
|
5078
|
-
|
|
5079
|
-
|
|
5080
|
-
>;
|
|
5069
|
+
export type GroomGeneratorPrototypeCustomData = GetStructType<{
|
|
5070
|
+
ShortHair: GroomGeneratorPrototypeShortHair;
|
|
5071
|
+
}> &
|
|
5072
|
+
GetStructType<GroomGeneratorPrototypeCustomDataItem[]>;
|
|
5081
5073
|
|
|
5082
5074
|
export type GroomGeneratorPrototypeCustomDataItem = GetStructType<{
|
|
5083
5075
|
Distribution: ECustomDataDistribution;
|
|
@@ -5313,14 +5305,13 @@ export type ItemGeneratorPrototypeHead = GetStructType<{
|
|
|
5313
5305
|
PossibleItems: ItemGeneratorPrototypePossibleItems;
|
|
5314
5306
|
}>;
|
|
5315
5307
|
|
|
5316
|
-
export type ItemGeneratorPrototypeItemGenerator = GetStructType<
|
|
5317
|
-
|
|
5318
|
-
|
|
5319
|
-
|
|
5320
|
-
|
|
5321
|
-
|
|
5322
|
-
|
|
5323
|
-
>;
|
|
5308
|
+
export type ItemGeneratorPrototypeItemGenerator = GetStructType<{
|
|
5309
|
+
Attach: ItemGeneratorPrototypeHead;
|
|
5310
|
+
BodyArmor: ItemGeneratorPrototypeHead;
|
|
5311
|
+
Head: ItemGeneratorPrototypeHead;
|
|
5312
|
+
WeaponPrimary: ItemGeneratorPrototypeHead;
|
|
5313
|
+
}> &
|
|
5314
|
+
GetStructType<ItemGeneratorPrototypeItemGeneratorItem[]>;
|
|
5324
5315
|
|
|
5325
5316
|
export type ItemGeneratorPrototypeItemGeneratorItem = GetStructType<{
|
|
5326
5317
|
bAllowSameCategoryGeneration: boolean;
|
|
@@ -5679,11 +5670,10 @@ export type LR_MeshGeneratorPrototypeAttachesItem = GetStructType<{
|
|
|
5679
5670
|
Weight: number;
|
|
5680
5671
|
}>;
|
|
5681
5672
|
|
|
5682
|
-
export type LR_MeshGeneratorPrototypeAttachments = GetStructType<
|
|
5683
|
-
|
|
5684
|
-
|
|
5685
|
-
|
|
5686
|
-
>;
|
|
5673
|
+
export type LR_MeshGeneratorPrototypeAttachments = GetStructType<{
|
|
5674
|
+
[Bbe in MeshSlotName]: LR_MeshGeneratorPrototypeBbe;
|
|
5675
|
+
}> &
|
|
5676
|
+
GetStructType<LR_MeshGeneratorPrototypeAttachmentsItem[]>;
|
|
5687
5677
|
|
|
5688
5678
|
export type LR_MeshGeneratorPrototypeAttachmentsItem = GetStructType<{
|
|
5689
5679
|
Attaches: LR_MeshGeneratorPrototypeAttaches;
|
|
@@ -5810,11 +5800,10 @@ export type MeshGeneratorPrototypeAttachesItem = GetStructType<{
|
|
|
5810
5800
|
Weight: number;
|
|
5811
5801
|
}>;
|
|
5812
5802
|
|
|
5813
|
-
export type MeshGeneratorPrototypeAttachments = GetStructType<
|
|
5814
|
-
|
|
5815
|
-
|
|
5816
|
-
|
|
5817
|
-
>;
|
|
5803
|
+
export type MeshGeneratorPrototypeAttachments = GetStructType<{
|
|
5804
|
+
[Bbe in MeshSlotName]: MeshGeneratorPrototypeBbe;
|
|
5805
|
+
}> &
|
|
5806
|
+
GetStructType<MeshGeneratorPrototypeAttachmentsItem[]>;
|
|
5818
5807
|
|
|
5819
5808
|
export type MeshGeneratorPrototypeAttachmentsItem = GetStructType<{
|
|
5820
5809
|
Attaches: MeshGeneratorPrototypeAttaches;
|
|
@@ -6134,11 +6123,10 @@ export type NPCNeedsPresetPrototypeExpansionResolverFactory = GetStructType<{
|
|
|
6134
6123
|
MinSquadSize: number;
|
|
6135
6124
|
}>;
|
|
6136
6125
|
|
|
6137
|
-
export type NPCNeedsPresetPrototypeGoalNeeds = GetStructType<
|
|
6138
|
-
|
|
6139
|
-
|
|
6140
|
-
|
|
6141
|
-
>;
|
|
6126
|
+
export type NPCNeedsPresetPrototypeGoalNeeds = GetStructType<{
|
|
6127
|
+
bEmpty: boolean;
|
|
6128
|
+
}> &
|
|
6129
|
+
GetStructType<NPCNeedsPresetPrototypeGoalNeedsItem[]>;
|
|
6142
6130
|
|
|
6143
6131
|
export type NPCNeedsPresetPrototypeGoalNeedsItem = GetStructType<{
|
|
6144
6132
|
InitialNeedValue: number;
|
|
@@ -6160,11 +6148,10 @@ export type NPCNeedsPresetPrototypeNeedsItem = GetStructType<{
|
|
|
6160
6148
|
Radius: number;
|
|
6161
6149
|
}>;
|
|
6162
6150
|
|
|
6163
|
-
export type NPCNeedsPresetPrototypeNeedsResolvers = GetStructType<
|
|
6164
|
-
|
|
6165
|
-
|
|
6166
|
-
|
|
6167
|
-
>;
|
|
6151
|
+
export type NPCNeedsPresetPrototypeNeedsResolvers = GetStructType<{
|
|
6152
|
+
bEmpty: boolean;
|
|
6153
|
+
}> &
|
|
6154
|
+
GetStructType<NPCNeedsPresetPrototypeNeedsResolversItem[]>;
|
|
6168
6155
|
|
|
6169
6156
|
export type NPCNeedsPresetPrototypeNeedsResolversItem = GetStructType<{
|
|
6170
6157
|
ExpansionResolverFactory: NPCNeedsPresetPrototypeExpansionResolverFactory;
|
|
@@ -7962,28 +7949,27 @@ export type QuestAnomalyPrototype = GetStructType<{
|
|
|
7962
7949
|
VelocityThreshold: number;
|
|
7963
7950
|
}>;
|
|
7964
7951
|
|
|
7965
|
-
export type QuestArtifactPrototype = GetStructType<
|
|
7966
|
-
|
|
7967
|
-
|
|
7968
|
-
|
|
7969
|
-
|
|
7970
|
-
|
|
7971
|
-
|
|
7972
|
-
|
|
7973
|
-
|
|
7974
|
-
|
|
7975
|
-
|
|
7976
|
-
|
|
7977
|
-
|
|
7978
|
-
|
|
7979
|
-
|
|
7980
|
-
|
|
7981
|
-
|
|
7982
|
-
|
|
7983
|
-
|
|
7984
|
-
|
|
7985
|
-
|
|
7986
|
-
>;
|
|
7952
|
+
export type QuestArtifactPrototype = GetStructType<{
|
|
7953
|
+
AnomalyElementType: EAnomalyElementType;
|
|
7954
|
+
ArtifactType: EArtifactType;
|
|
7955
|
+
DetectorRequired: boolean;
|
|
7956
|
+
EffectPrototypeSIDs: NPCPrototypeSkills;
|
|
7957
|
+
ID: number;
|
|
7958
|
+
IsQuestItem: boolean;
|
|
7959
|
+
JumpAmount: number;
|
|
7960
|
+
JumpDelay: number;
|
|
7961
|
+
JumpDistance: number;
|
|
7962
|
+
JumpForce: number;
|
|
7963
|
+
JumpHeight: number;
|
|
7964
|
+
JumpSeriesDelay: number;
|
|
7965
|
+
JumpSpeedCoef: number;
|
|
7966
|
+
LandingForce: number;
|
|
7967
|
+
LifeTime: number;
|
|
7968
|
+
PlayerDistance: number;
|
|
7969
|
+
Rarity: EArtifactRarity;
|
|
7970
|
+
ReturnDistanceValue: number;
|
|
7971
|
+
}> &
|
|
7972
|
+
GetStructType<string[]>;
|
|
7987
7973
|
|
|
7988
7974
|
export type QuestArtifactSpawnerPrototype = GetStructType<{
|
|
7989
7975
|
Experienced: QuestArtifactSpawnerPrototypeMaster;
|
|
@@ -8488,25 +8474,23 @@ export type QuestNodePrototypeCondition = GetStructType<{
|
|
|
8488
8474
|
SID: string;
|
|
8489
8475
|
}>;
|
|
8490
8476
|
|
|
8491
|
-
export type QuestNodePrototypeConditions = GetStructType<
|
|
8492
|
-
|
|
8493
|
-
|
|
8494
|
-
|
|
8495
|
-
>;
|
|
8477
|
+
export type QuestNodePrototypeConditions = GetStructType<{
|
|
8478
|
+
ConditionCheckType: EConditionCheckType;
|
|
8479
|
+
}> &
|
|
8480
|
+
GetStructType<QuestNodePrototypeConditionsItem[]>;
|
|
8496
8481
|
|
|
8497
|
-
export type QuestNodePrototypeConditionsItem = GetStructType<
|
|
8498
|
-
|
|
8499
|
-
|
|
8500
|
-
|
|
8501
|
-
|
|
8502
|
-
|
|
8503
|
-
|
|
8504
|
-
|
|
8505
|
-
|
|
8506
|
-
|
|
8507
|
-
|
|
8508
|
-
|
|
8509
|
-
>;
|
|
8482
|
+
export type QuestNodePrototypeConditionsItem = GetStructType<{
|
|
8483
|
+
ConditionComparance: EConditionComparance;
|
|
8484
|
+
ConditionType: EQuestConditionType;
|
|
8485
|
+
ItemPrototypeSID: string;
|
|
8486
|
+
NumericValue: number;
|
|
8487
|
+
TargetCharacter: string;
|
|
8488
|
+
TargetItemContainer: string;
|
|
8489
|
+
TargetPoint: AIGlobalRelativeLocation;
|
|
8490
|
+
WithEquipped: boolean;
|
|
8491
|
+
WithInventory: boolean;
|
|
8492
|
+
}> &
|
|
8493
|
+
GetStructType<QuestNodePrototypeConditionsItemItem[]>;
|
|
8510
8494
|
|
|
8511
8495
|
export type QuestNodePrototypeConditionsItemItem = GetStructType<{
|
|
8512
8496
|
AITarget: string;
|
|
@@ -10565,22 +10549,21 @@ export type ScriptScriptsArrayItem = GetStructType<{
|
|
|
10565
10549
|
ScriptsSubArray: NPCPrototypeSkills;
|
|
10566
10550
|
}>;
|
|
10567
10551
|
|
|
10568
|
-
export type SettingsVariablesPC = GetStructType<
|
|
10569
|
-
|
|
10570
|
-
|
|
10571
|
-
|
|
10572
|
-
|
|
10573
|
-
|
|
10574
|
-
|
|
10575
|
-
|
|
10576
|
-
|
|
10577
|
-
|
|
10578
|
-
|
|
10579
|
-
|
|
10580
|
-
|
|
10581
|
-
|
|
10582
|
-
|
|
10583
|
-
>;
|
|
10552
|
+
export type SettingsVariablesPC = GetStructType<{
|
|
10553
|
+
AimAssistMagnetismModifier: number;
|
|
10554
|
+
AimAssistSnappingModifier: number;
|
|
10555
|
+
AimAssistStickinessModifier: number;
|
|
10556
|
+
AimAssistTrackingModifier: number;
|
|
10557
|
+
LeftThumbstick: SettingsVariablesPCLeftTrigger;
|
|
10558
|
+
LeftTrigger: SettingsVariablesPCLeftTrigger;
|
|
10559
|
+
RightThumbstick: SettingsVariablesPCLeftTrigger;
|
|
10560
|
+
RightTrigger: SettingsVariablesPCLeftTrigger;
|
|
10561
|
+
SnappingAutomaticTargetChangeEnabled: boolean;
|
|
10562
|
+
SnappingCameraMovementToleranceEnabled: boolean;
|
|
10563
|
+
SnappingCameraRadiusToleranceEnabled: boolean;
|
|
10564
|
+
SnappingTime: number;
|
|
10565
|
+
}> &
|
|
10566
|
+
GetStructType<SettingsVariablesPCLookSensitivityCurveKeysItem[]>;
|
|
10584
10567
|
|
|
10585
10568
|
export type SettingsVariablesPCLeftTrigger = GetStructType<{
|
|
10586
10569
|
LowerThreshold: number;
|
|
@@ -10597,187 +10580,181 @@ export type SettingsVariablesPCLookSensitivityCurveKeysItem = GetStructType<{
|
|
|
10597
10580
|
Value: number;
|
|
10598
10581
|
}>;
|
|
10599
10582
|
|
|
10600
|
-
export type SettingsVariablesPS5Base = GetStructType<
|
|
10601
|
-
|
|
10602
|
-
|
|
10603
|
-
|
|
10604
|
-
|
|
10605
|
-
|
|
10606
|
-
|
|
10607
|
-
|
|
10608
|
-
|
|
10609
|
-
|
|
10610
|
-
|
|
10611
|
-
|
|
10612
|
-
|
|
10613
|
-
|
|
10614
|
-
|
|
10615
|
-
|
|
10616
|
-
|
|
10617
|
-
|
|
10618
|
-
|
|
10619
|
-
|
|
10620
|
-
|
|
10621
|
-
|
|
10622
|
-
|
|
10623
|
-
|
|
10624
|
-
|
|
10625
|
-
|
|
10626
|
-
|
|
10627
|
-
|
|
10628
|
-
|
|
10629
|
-
|
|
10630
|
-
|
|
10631
|
-
|
|
10632
|
-
|
|
10633
|
-
|
|
10634
|
-
|
|
10635
|
-
|
|
10636
|
-
|
|
10637
|
-
|
|
10638
|
-
|
|
10639
|
-
|
|
10640
|
-
|
|
10641
|
-
|
|
10642
|
-
|
|
10643
|
-
|
|
10644
|
-
|
|
10645
|
-
|
|
10646
|
-
|
|
10647
|
-
|
|
10648
|
-
|
|
10649
|
-
|
|
10650
|
-
|
|
10651
|
-
|
|
10652
|
-
|
|
10653
|
-
|
|
10654
|
-
|
|
10655
|
-
|
|
10656
|
-
|
|
10657
|
-
|
|
10658
|
-
|
|
10659
|
-
|
|
10660
|
-
|
|
10661
|
-
|
|
10662
|
-
|
|
10663
|
-
|
|
10664
|
-
|
|
10665
|
-
|
|
10666
|
-
|
|
10667
|
-
|
|
10668
|
-
|
|
10669
|
-
|
|
10670
|
-
|
|
10671
|
-
|
|
10672
|
-
|
|
10673
|
-
|
|
10674
|
-
|
|
10675
|
-
|
|
10676
|
-
|
|
10677
|
-
|
|
10678
|
-
|
|
10679
|
-
|
|
10680
|
-
|
|
10681
|
-
|
|
10682
|
-
|
|
10683
|
-
|
|
10684
|
-
|
|
10685
|
-
|
|
10686
|
-
|
|
10687
|
-
|
|
10688
|
-
|
|
10689
|
-
|
|
10690
|
-
|
|
10691
|
-
|
|
10692
|
-
|
|
10693
|
-
|
|
10694
|
-
|
|
10695
|
-
|
|
10696
|
-
|
|
10697
|
-
|
|
10698
|
-
|
|
10699
|
-
|
|
10700
|
-
|
|
10701
|
-
|
|
10702
|
-
|
|
10703
|
-
|
|
10704
|
-
|
|
10705
|
-
|
|
10706
|
-
|
|
10707
|
-
|
|
10708
|
-
|
|
10709
|
-
|
|
10710
|
-
|
|
10711
|
-
|
|
10712
|
-
|
|
10713
|
-
|
|
10714
|
-
|
|
10715
|
-
|
|
10716
|
-
|
|
10717
|
-
|
|
10718
|
-
|
|
10719
|
-
|
|
10720
|
-
|
|
10721
|
-
|
|
10722
|
-
|
|
10723
|
-
|
|
10724
|
-
|
|
10725
|
-
|
|
10726
|
-
|
|
10727
|
-
|
|
10728
|
-
|
|
10729
|
-
|
|
10730
|
-
|
|
10731
|
-
|
|
10732
|
-
|
|
10733
|
-
|
|
10734
|
-
|
|
10735
|
-
|
|
10736
|
-
|
|
10737
|
-
|
|
10738
|
-
|
|
10739
|
-
|
|
10740
|
-
|
|
10741
|
-
|
|
10742
|
-
|
|
10743
|
-
|
|
10744
|
-
|
|
10745
|
-
|
|
10746
|
-
|
|
10747
|
-
|
|
10748
|
-
|
|
10749
|
-
|
|
10750
|
-
|
|
10751
|
-
|
|
10752
|
-
|
|
10753
|
-
|
|
10754
|
-
|
|
10755
|
-
|
|
10756
|
-
|
|
10757
|
-
|
|
10758
|
-
|
|
10759
|
-
|
|
10760
|
-
|
|
10761
|
-
|
|
10762
|
-
|
|
10763
|
-
|
|
10764
|
-
|
|
10765
|
-
|
|
10766
|
-
|
|
10767
|
-
|
|
10768
|
-
|
|
10769
|
-
|
|
10770
|
-
|
|
10771
|
-
|
|
10772
|
-
|
|
10773
|
-
|
|
10774
|
-
|
|
10775
|
-
StartYear: number;
|
|
10776
|
-
SunLightMaxBrightness: number;
|
|
10777
|
-
TimeZone: number;
|
|
10778
|
-
Zombie: SingletonConstantZombie;
|
|
10779
|
-
} & (EDialogEventType | SingletonConstantSpotLightIntensityItem)[]
|
|
10780
|
-
>;
|
|
10583
|
+
export type SettingsVariablesPS5Base = GetStructType<{
|
|
10584
|
+
AimAssistMagnetismModifier: number;
|
|
10585
|
+
AimAssistSnappingModifier: number;
|
|
10586
|
+
AimAssistStickinessModifier: number;
|
|
10587
|
+
AimAssistTrackingModifier: number;
|
|
10588
|
+
LeftThumbstick: SettingsVariablesPCLeftTrigger;
|
|
10589
|
+
LeftTrigger: SettingsVariablesPCLeftTrigger;
|
|
10590
|
+
RightThumbstick: SettingsVariablesPCLeftTrigger;
|
|
10591
|
+
RightTrigger: SettingsVariablesPCLeftTrigger;
|
|
10592
|
+
SnappingAutomaticTargetChangeEnabled: boolean;
|
|
10593
|
+
SnappingCameraMovementToleranceEnabled: boolean;
|
|
10594
|
+
SnappingCameraRadiusToleranceEnabled: boolean;
|
|
10595
|
+
SnappingTime: number;
|
|
10596
|
+
}> &
|
|
10597
|
+
GetStructType<SettingsVariablesPCLookSensitivityCurveKeysItem[]>;
|
|
10598
|
+
|
|
10599
|
+
export type SettingsVariablesPS5Pro = GetStructType<{
|
|
10600
|
+
AimAssistMagnetismModifier: number;
|
|
10601
|
+
AimAssistSnappingModifier: number;
|
|
10602
|
+
AimAssistStickinessModifier: number;
|
|
10603
|
+
AimAssistTrackingModifier: number;
|
|
10604
|
+
LeftThumbstick: SettingsVariablesPCLeftTrigger;
|
|
10605
|
+
LeftTrigger: SettingsVariablesPCLeftTrigger;
|
|
10606
|
+
RightThumbstick: SettingsVariablesPCLeftTrigger;
|
|
10607
|
+
RightTrigger: SettingsVariablesPCLeftTrigger;
|
|
10608
|
+
SnappingAutomaticTargetChangeEnabled: boolean;
|
|
10609
|
+
SnappingCameraMovementToleranceEnabled: boolean;
|
|
10610
|
+
SnappingCameraRadiusToleranceEnabled: boolean;
|
|
10611
|
+
SnappingTime: number;
|
|
10612
|
+
}> &
|
|
10613
|
+
GetStructType<SettingsVariablesPCLookSensitivityCurveKeysItem[]>;
|
|
10614
|
+
|
|
10615
|
+
export type SettingsVariablesWin64 = GetStructType<{
|
|
10616
|
+
AimAssistMagnetismModifier: number;
|
|
10617
|
+
AimAssistSnappingModifier: number;
|
|
10618
|
+
AimAssistStickinessModifier: number;
|
|
10619
|
+
AimAssistTrackingModifier: number;
|
|
10620
|
+
LeftThumbstick: SettingsVariablesPCLeftTrigger;
|
|
10621
|
+
LeftTrigger: SettingsVariablesPCLeftTrigger;
|
|
10622
|
+
RightThumbstick: SettingsVariablesPCLeftTrigger;
|
|
10623
|
+
RightTrigger: SettingsVariablesPCLeftTrigger;
|
|
10624
|
+
SnappingAutomaticTargetChangeEnabled: boolean;
|
|
10625
|
+
SnappingCameraMovementToleranceEnabled: boolean;
|
|
10626
|
+
SnappingCameraRadiusToleranceEnabled: boolean;
|
|
10627
|
+
SnappingTime: number;
|
|
10628
|
+
}> &
|
|
10629
|
+
GetStructType<SettingsVariablesPCLookSensitivityCurveKeysItem[]>;
|
|
10630
|
+
|
|
10631
|
+
export type SettingsVariablesXSS = GetStructType<{
|
|
10632
|
+
AimAssistMagnetismModifier: number;
|
|
10633
|
+
AimAssistSnappingModifier: number;
|
|
10634
|
+
AimAssistStickinessModifier: number;
|
|
10635
|
+
AimAssistTrackingModifier: number;
|
|
10636
|
+
LeftThumbstick: SettingsVariablesPCLeftTrigger;
|
|
10637
|
+
LeftTrigger: SettingsVariablesPCLeftTrigger;
|
|
10638
|
+
RightThumbstick: SettingsVariablesPCLeftTrigger;
|
|
10639
|
+
RightTrigger: SettingsVariablesPCLeftTrigger;
|
|
10640
|
+
SnappingAutomaticTargetChangeEnabled: boolean;
|
|
10641
|
+
SnappingCameraMovementToleranceEnabled: boolean;
|
|
10642
|
+
SnappingCameraRadiusToleranceEnabled: boolean;
|
|
10643
|
+
SnappingTime: number;
|
|
10644
|
+
}> &
|
|
10645
|
+
GetStructType<SettingsVariablesPCLookSensitivityCurveKeysItem[]>;
|
|
10646
|
+
|
|
10647
|
+
export type SettingsVariablesXSX = GetStructType<{
|
|
10648
|
+
AimAssistMagnetismModifier: number;
|
|
10649
|
+
AimAssistSnappingModifier: number;
|
|
10650
|
+
AimAssistStickinessModifier: number;
|
|
10651
|
+
AimAssistTrackingModifier: number;
|
|
10652
|
+
LeftThumbstick: SettingsVariablesPCLeftTrigger;
|
|
10653
|
+
LeftTrigger: SettingsVariablesPCLeftTrigger;
|
|
10654
|
+
RightThumbstick: SettingsVariablesPCLeftTrigger;
|
|
10655
|
+
RightTrigger: SettingsVariablesPCLeftTrigger;
|
|
10656
|
+
SnappingAutomaticTargetChangeEnabled: boolean;
|
|
10657
|
+
SnappingCameraMovementToleranceEnabled: boolean;
|
|
10658
|
+
SnappingCameraRadiusToleranceEnabled: boolean;
|
|
10659
|
+
SnappingTime: number;
|
|
10660
|
+
}> &
|
|
10661
|
+
GetStructType<SettingsVariablesPCLookSensitivityCurveKeysItem[]>;
|
|
10662
|
+
|
|
10663
|
+
export type SingletonConstant = GetStructType<{
|
|
10664
|
+
Army: SingletonConstantArmy;
|
|
10665
|
+
Bandits: CoreVariableTorso;
|
|
10666
|
+
bDebugLogAssetLoading: boolean;
|
|
10667
|
+
CallPlayer: number;
|
|
10668
|
+
Chatter: number;
|
|
10669
|
+
CloudOpacity: number;
|
|
10670
|
+
CloudSpeed: number;
|
|
10671
|
+
Combat_Action_Cover: number;
|
|
10672
|
+
Combat_Action_Detour: number;
|
|
10673
|
+
Combat_Action_EnemyDead: number;
|
|
10674
|
+
Combat_Action_EnemyGrenade: number;
|
|
10675
|
+
Combat_Action_EnemyHit: number;
|
|
10676
|
+
Combat_Action_FireSupression: number;
|
|
10677
|
+
Combat_Action_Flank: number;
|
|
10678
|
+
Combat_Action_FriendlyDead: number;
|
|
10679
|
+
Combat_Action_FriendlyFire: number;
|
|
10680
|
+
Combat_Action_FriendlyGrenade: number;
|
|
10681
|
+
Combat_Action_FriendlyHit: number;
|
|
10682
|
+
Combat_Action_Move: number;
|
|
10683
|
+
Combat_Action_Reload: number;
|
|
10684
|
+
Combat_EnemyFound: number;
|
|
10685
|
+
Combat_EnemyRetreat: number;
|
|
10686
|
+
Combat_EnemySearch: number;
|
|
10687
|
+
Combat_Over: number;
|
|
10688
|
+
Combat_SearchEnd: number;
|
|
10689
|
+
Combat_SelfRetreat: number;
|
|
10690
|
+
Combat_Start: number;
|
|
10691
|
+
Combat_Threats_AlertedSearch: number;
|
|
10692
|
+
Combat_Threats_AlertedSearchEnd: number;
|
|
10693
|
+
Combat_Threats_EnemySearch: number;
|
|
10694
|
+
Combat_Threats_ThreatDetected: number;
|
|
10695
|
+
Combat_Wounded_GoingToHeal: number;
|
|
10696
|
+
Combat_Wounded_Grunt_HealReceive: number;
|
|
10697
|
+
Combat_Wounded_Knocked: number;
|
|
10698
|
+
Combat_Zombie_Attack: number;
|
|
10699
|
+
Combat_Zombie_Moan: number;
|
|
10700
|
+
DefeatComment: number;
|
|
10701
|
+
Dualshock4: SingletonConstantKeyboard;
|
|
10702
|
+
Emission_LeaderEnd: number;
|
|
10703
|
+
Emission_LeaderStart: number;
|
|
10704
|
+
FreeStalkers: SingletonConstantArmy;
|
|
10705
|
+
Interact_Friendly: number;
|
|
10706
|
+
Interact_Neutral: number;
|
|
10707
|
+
Interact_NonFriendly: number;
|
|
10708
|
+
Joke: number;
|
|
10709
|
+
Keyboard: SingletonConstantKeyboard;
|
|
10710
|
+
Latitude: number;
|
|
10711
|
+
LightSourceFadingDurationHoursOnDayNightChange: number;
|
|
10712
|
+
Longitude: number;
|
|
10713
|
+
Monolith: CoreVariableTorso;
|
|
10714
|
+
MoonLightMaxBrightness: number;
|
|
10715
|
+
NorthOffsetAngle: number;
|
|
10716
|
+
NotifyExpireDuration: number;
|
|
10717
|
+
NotifyFadeInDuration: number;
|
|
10718
|
+
NotifyFadeOutDuration: number;
|
|
10719
|
+
Peaceful_CorpseHubComment: number;
|
|
10720
|
+
Peaceful_DropCorpse: number;
|
|
10721
|
+
Peaceful_LootingEnemyCorpse: number;
|
|
10722
|
+
Peaceful_LootingFriendlyCorpse: number;
|
|
10723
|
+
PointLight: SingletonConstantPointLight;
|
|
10724
|
+
ReflectionCubemapMipSize: number;
|
|
10725
|
+
ReflectionCubemapResolution: number;
|
|
10726
|
+
ReflectionFloorHeight: number;
|
|
10727
|
+
ReflectionManagerTickTime: number;
|
|
10728
|
+
ReflectionNonGeneratedLimit: number;
|
|
10729
|
+
ReflectionSphereGlobalGridDepth: number;
|
|
10730
|
+
ReflectionSphereGlobalGridHeight: number;
|
|
10731
|
+
ReflectionSphereGlobalGridWidth: number;
|
|
10732
|
+
ReflectionSphereGridLoadCoef: number;
|
|
10733
|
+
ReflectionSphereGridSizeX: number;
|
|
10734
|
+
ReflectionSphereGridSizeY: number;
|
|
10735
|
+
ReflectionSphereGridSizeZ: number;
|
|
10736
|
+
ReflectionSphereGridUnloadCoef: number;
|
|
10737
|
+
ReflectionSphereLocalGridDepth: number;
|
|
10738
|
+
ReflectionSphereLocalGridHeight: number;
|
|
10739
|
+
ReflectionSphereLocalGridWidth: number;
|
|
10740
|
+
ReflectionSpherePoolMaxSize: number;
|
|
10741
|
+
ReflectionSphereRadius: number;
|
|
10742
|
+
ReflectionUpdateDistancesSqr: SingletonConstantReflectionUpdateDistancesSqr;
|
|
10743
|
+
RunOn: number;
|
|
10744
|
+
SpeechEventCooldown: SingletonConstantSpeechEventCooldown;
|
|
10745
|
+
SpotLight: SingletonConstantSpotLight;
|
|
10746
|
+
StarsBrightness: number;
|
|
10747
|
+
StartDay: number;
|
|
10748
|
+
StartHour: number;
|
|
10749
|
+
StartMinute: number;
|
|
10750
|
+
StartMonth: number;
|
|
10751
|
+
StartSecond: number;
|
|
10752
|
+
StartYear: number;
|
|
10753
|
+
SunLightMaxBrightness: number;
|
|
10754
|
+
TimeZone: number;
|
|
10755
|
+
Zombie: SingletonConstantZombie;
|
|
10756
|
+
}> &
|
|
10757
|
+
GetStructType<(EDialogEventType | SingletonConstantSpotLightIntensityItem)[]>;
|
|
10781
10758
|
|
|
10782
10759
|
export type SingletonConstantActions = GetStructType<
|
|
10783
10760
|
SingletonConstantActionsItem[]
|
|
@@ -11063,11 +11040,10 @@ export type SpawnActorPrototypeAnomaliesPresets = GetStructType<
|
|
|
11063
11040
|
SpawnActorPrototypeAnomaliesPresetsItem[]
|
|
11064
11041
|
>;
|
|
11065
11042
|
|
|
11066
|
-
export type SpawnActorPrototypeAnomaliesPresetsItem = GetStructType<
|
|
11067
|
-
|
|
11068
|
-
|
|
11069
|
-
|
|
11070
|
-
>;
|
|
11043
|
+
export type SpawnActorPrototypeAnomaliesPresetsItem = GetStructType<{
|
|
11044
|
+
AnomaliesSpawnData: SpawnActorPrototypeAnomaliesSpawnData;
|
|
11045
|
+
}> &
|
|
11046
|
+
GetStructType<string[]>;
|
|
11071
11047
|
|
|
11072
11048
|
export type SpawnActorPrototypeAnomaliesSpawnData = GetStructType<
|
|
11073
11049
|
SpawnActorPrototypeAnomaliesSpawnDataItem[]
|
|
@@ -11304,13 +11280,12 @@ export type SpawnActorPrototypeSpawnSettingsPerPlayerRanks = GetStructType<{
|
|
|
11304
11280
|
|
|
11305
11281
|
export type SpawnActorPrototypeSquadMembersQuestSIDs = StringArray;
|
|
11306
11282
|
|
|
11307
|
-
export type SpawnActorPrototypeVolumes = GetStructType<
|
|
11308
|
-
|
|
11309
|
-
|
|
11310
|
-
|
|
11311
|
-
|
|
11312
|
-
|
|
11313
|
-
>;
|
|
11283
|
+
export type SpawnActorPrototypeVolumes = GetStructType<{
|
|
11284
|
+
LairCoreVolumes: SingletonConstantArmy;
|
|
11285
|
+
LairTerritoryVolumes: SpawnActorPrototypeLairTerritoryVolumes;
|
|
11286
|
+
NavModifierVolumes: UpdatePopupPrototypeContentData;
|
|
11287
|
+
}> &
|
|
11288
|
+
GetStructType<SpawnActorPrototypeVolumesItem[]>;
|
|
11314
11289
|
|
|
11315
11290
|
export type SpawnActorPrototypeVolumesItem = GetStructType<{
|
|
11316
11291
|
bShowMarker: boolean;
|
|
@@ -12257,13 +12232,12 @@ export type WeatherPrototypeWeatherTransitionsItem = GetStructType<{
|
|
|
12257
12232
|
WeatherPrototypeSID: string;
|
|
12258
12233
|
}>;
|
|
12259
12234
|
|
|
12260
|
-
export type WeatherSelectionPrototype = GetStructType<
|
|
12261
|
-
|
|
12262
|
-
|
|
12263
|
-
|
|
12264
|
-
|
|
12265
|
-
|
|
12266
|
-
>;
|
|
12235
|
+
export type WeatherSelectionPrototype = GetStructType<{
|
|
12236
|
+
EmissionPrototypeSID: string;
|
|
12237
|
+
Priority: number;
|
|
12238
|
+
SID: string;
|
|
12239
|
+
}> &
|
|
12240
|
+
GetStructType<Record<WeatherSelection, WeatherSelectionPrototypeFogy>>;
|
|
12267
12241
|
|
|
12268
12242
|
export type WeatherSelectionPrototypeFogy = GetStructType<{
|
|
12269
12243
|
bAllowInDialogueTransition: boolean;
|