s2cfgtojson 4.1.2 → 4.2.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.
- package/enums.mts +11 -2
- package/package.json +1 -1
- package/types.mts +2756 -1760
package/enums.mts
CHANGED
|
@@ -76,7 +76,7 @@ export type EAimAssistWeightType = `EAimAssistWeightType::${
|
|
|
76
76
|
| "Angle"
|
|
77
77
|
| "DistanceFromApex"}`;
|
|
78
78
|
|
|
79
|
-
export type
|
|
79
|
+
export type Caliber =
|
|
80
80
|
| "A012"
|
|
81
81
|
| "A045"
|
|
82
82
|
| "A545"
|
|
@@ -91,7 +91,9 @@ export type EAmmoCaliber = `EAmmoCaliber::${
|
|
|
91
91
|
| "AHEDP"
|
|
92
92
|
| "APG7V"
|
|
93
93
|
| "AVOG"
|
|
94
|
-
| "None"
|
|
94
|
+
| "None";
|
|
95
|
+
|
|
96
|
+
export type EAmmoCaliber = `EAmmoCaliber::${Caliber}`;
|
|
95
97
|
|
|
96
98
|
export type EAmmoType = `EAmmoType::${
|
|
97
99
|
| "ArmorPiercing"
|
|
@@ -1608,6 +1610,7 @@ export type ERadiationPreset = `ERadiationPreset::${
|
|
|
1608
1610
|
| "Strong"
|
|
1609
1611
|
| "Topaz"}`;
|
|
1610
1612
|
|
|
1613
|
+
export type Rank = "Newbie" | "Experienced" | "Veteran" | "Master";
|
|
1611
1614
|
type Newbie = "ERank::Newbie";
|
|
1612
1615
|
type Experienced = "ERank::Experienced";
|
|
1613
1616
|
type Veteran = "ERank::Veteran";
|
|
@@ -2098,3 +2101,9 @@ export type EObjBoolParams = `EObjBoolParams::${
|
|
|
2098
2101
|
| "IsDetectorInHands"}`;
|
|
2099
2102
|
|
|
2100
2103
|
export type ECombatTactics = `ECombatTactics::${"Attack" | "None"}`;
|
|
2104
|
+
|
|
2105
|
+
export type EAgentRankMask = `EAgentRankMask::${
|
|
2106
|
+
| "Experienced"
|
|
2107
|
+
| "Veteran"
|
|
2108
|
+
| "Master"
|
|
2109
|
+
| "All"}`;
|