s2cfgtojson 7.0.20 → 7.0.22
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/dist/types.d.mts +30 -1
- package/package.json +1 -1
package/dist/types.d.mts
CHANGED
|
@@ -6621,6 +6621,7 @@ export type QuestNodePrototypeBridgeEvent = GetStructType<{
|
|
|
6621
6621
|
LinkedNodePrototypeSID: string;
|
|
6622
6622
|
NodePrototypeVersion: number;
|
|
6623
6623
|
NodeType: "EQuestNodeType::BridgeEvent" & EQuestNodeType;
|
|
6624
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
6624
6625
|
OutputPinNames: QuestNodePrototypeOutputPinNames;
|
|
6625
6626
|
QuestSID: string;
|
|
6626
6627
|
Repeatable: boolean;
|
|
@@ -7034,6 +7035,7 @@ export type QuestNodePrototypeOnAbilityEndedEvent = GetStructType<{
|
|
|
7034
7035
|
LaunchOnQuestStart: boolean;
|
|
7035
7036
|
NodePrototypeVersion: number;
|
|
7036
7037
|
NodeType: "EQuestNodeType::OnAbilityEndedEvent" & EQuestNodeType;
|
|
7038
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7037
7039
|
QuestSID: string;
|
|
7038
7040
|
SID: string;
|
|
7039
7041
|
TargetQuestGuid: string;
|
|
@@ -7045,6 +7047,7 @@ export type QuestNodePrototypeOnAbilityUsedEvent = GetStructType<{
|
|
|
7045
7047
|
LaunchOnQuestStart: boolean;
|
|
7046
7048
|
NodePrototypeVersion: number;
|
|
7047
7049
|
NodeType: "EQuestNodeType::OnAbilityUsedEvent" & EQuestNodeType;
|
|
7050
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7048
7051
|
QuestSID: string;
|
|
7049
7052
|
Repeatable: boolean;
|
|
7050
7053
|
SID: string;
|
|
@@ -7057,6 +7060,7 @@ export type QuestNodePrototypeOnDialogStartEvent = GetStructType<{
|
|
|
7057
7060
|
LaunchOnQuestStart: boolean;
|
|
7058
7061
|
NodePrototypeVersion: number;
|
|
7059
7062
|
NodeType: "EQuestNodeType::OnDialogStartEvent" & EQuestNodeType;
|
|
7063
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7060
7064
|
QuestSID: string;
|
|
7061
7065
|
SID: string;
|
|
7062
7066
|
TargetQuestGuid: string;
|
|
@@ -7068,6 +7072,7 @@ export type QuestNodePrototypeOnEmissionFinishEvent = GetStructType<{
|
|
|
7068
7072
|
LaunchOnQuestStart: boolean;
|
|
7069
7073
|
NodePrototypeVersion: number;
|
|
7070
7074
|
NodeType: "EQuestNodeType::OnEmissionFinishEvent" & EQuestNodeType;
|
|
7075
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7071
7076
|
QuestSID: string;
|
|
7072
7077
|
Repeatable: boolean;
|
|
7073
7078
|
SID: string;
|
|
@@ -7078,6 +7083,7 @@ export type QuestNodePrototypeOnEmissionStageActivated = GetStructType<{
|
|
|
7078
7083
|
LaunchOnQuestStart: boolean;
|
|
7079
7084
|
NodePrototypeVersion: number;
|
|
7080
7085
|
NodeType: "EQuestNodeType::OnEmissionStageActivated" & EQuestNodeType;
|
|
7086
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7081
7087
|
QuestSID: string;
|
|
7082
7088
|
Repeatable: boolean;
|
|
7083
7089
|
SID: string;
|
|
@@ -7089,6 +7095,7 @@ export type QuestNodePrototypeOnEmissionStageFinished = GetStructType<{
|
|
|
7089
7095
|
LaunchOnQuestStart: boolean;
|
|
7090
7096
|
NodePrototypeVersion: number;
|
|
7091
7097
|
NodeType: "EQuestNodeType::OnEmissionStageFinished" & EQuestNodeType;
|
|
7098
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7092
7099
|
QuestSID: string;
|
|
7093
7100
|
Repeatable: boolean;
|
|
7094
7101
|
SID: string;
|
|
@@ -7101,6 +7108,7 @@ export type QuestNodePrototypeOnEmissionStartEvent = GetStructType<{
|
|
|
7101
7108
|
LaunchOnQuestStart: boolean;
|
|
7102
7109
|
NodePrototypeVersion: number;
|
|
7103
7110
|
NodeType: "EQuestNodeType::OnEmissionStartEvent" & EQuestNodeType;
|
|
7111
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7104
7112
|
QuestSID: string;
|
|
7105
7113
|
Repeatable: boolean;
|
|
7106
7114
|
SID: string;
|
|
@@ -7113,6 +7121,7 @@ export type QuestNodePrototypeOnFactionBecomeEnemyEvent = GetStructType<{
|
|
|
7113
7121
|
LaunchOnQuestStart: boolean;
|
|
7114
7122
|
NodePrototypeVersion: number;
|
|
7115
7123
|
NodeType: "EQuestNodeType::OnFactionBecomeEnemyEvent" & EQuestNodeType;
|
|
7124
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7116
7125
|
QuestSID: string;
|
|
7117
7126
|
Repeatable: boolean;
|
|
7118
7127
|
SID: string;
|
|
@@ -7124,6 +7133,7 @@ export type QuestNodePrototypeOnFactionBecomeFriendEvent = GetStructType<{
|
|
|
7124
7133
|
LaunchOnQuestStart: boolean;
|
|
7125
7134
|
NodePrototypeVersion: number;
|
|
7126
7135
|
NodeType: "EQuestNodeType::OnFactionBecomeFriendEvent" & EQuestNodeType;
|
|
7136
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7127
7137
|
QuestSID: string;
|
|
7128
7138
|
SID: string;
|
|
7129
7139
|
TrackBeforeActive: boolean;
|
|
@@ -7133,6 +7143,7 @@ export type QuestNodePrototypeOnGetCompatibleAttachEvent = GetStructType<{
|
|
|
7133
7143
|
LaunchOnQuestStart: boolean;
|
|
7134
7144
|
NodePrototypeVersion: number;
|
|
7135
7145
|
NodeType: "EQuestNodeType::OnGetCompatibleAttachEvent" & EQuestNodeType;
|
|
7146
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7136
7147
|
QuestSID: string;
|
|
7137
7148
|
SID: string;
|
|
7138
7149
|
TrackBeforeActive: boolean;
|
|
@@ -7145,6 +7156,7 @@ export type QuestNodePrototypeOnHitEvent = GetStructType<{
|
|
|
7145
7156
|
LaunchOnQuestStart: boolean;
|
|
7146
7157
|
NodePrototypeVersion: number;
|
|
7147
7158
|
NodeType: "EQuestNodeType::OnHitEvent" & EQuestNodeType;
|
|
7159
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7148
7160
|
QuestSID: string;
|
|
7149
7161
|
Repeatable: boolean;
|
|
7150
7162
|
SID: string;
|
|
@@ -7157,6 +7169,7 @@ export type QuestNodePrototypeOnInfotopicFinishEvent = GetStructType<{
|
|
|
7157
7169
|
LaunchOnQuestStart: boolean;
|
|
7158
7170
|
NodePrototypeVersion: number;
|
|
7159
7171
|
NodeType: "EQuestNodeType::OnInfotopicFinishEvent" & EQuestNodeType;
|
|
7172
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7160
7173
|
QuestSID: string;
|
|
7161
7174
|
SID: string;
|
|
7162
7175
|
TrackBeforeActive: boolean;
|
|
@@ -7167,6 +7180,7 @@ export type QuestNodePrototypeOnInteractEvent = GetStructType<{
|
|
|
7167
7180
|
LaunchOnQuestStart: boolean;
|
|
7168
7181
|
NodePrototypeVersion: number;
|
|
7169
7182
|
NodeType: "EQuestNodeType::OnInteractEvent" & EQuestNodeType;
|
|
7183
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7170
7184
|
QuestSID: string;
|
|
7171
7185
|
Repeatable: boolean;
|
|
7172
7186
|
SID: string;
|
|
@@ -7180,6 +7194,7 @@ export type QuestNodePrototypeOnJournalQuestEvent = GetStructType<{
|
|
|
7180
7194
|
LaunchOnQuestStart: boolean;
|
|
7181
7195
|
NodePrototypeVersion: number;
|
|
7182
7196
|
NodeType: "EQuestNodeType::OnJournalQuestEvent" & EQuestNodeType;
|
|
7197
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7183
7198
|
QuestSID: string;
|
|
7184
7199
|
Repeatable: boolean;
|
|
7185
7200
|
SID: string;
|
|
@@ -7192,6 +7207,7 @@ export type QuestNodePrototypeOnKillerCheckEvent = GetStructType<{
|
|
|
7192
7207
|
LaunchOnQuestStart: boolean;
|
|
7193
7208
|
NodePrototypeVersion: number;
|
|
7194
7209
|
NodeType: "EQuestNodeType::OnKillerCheckEvent" & EQuestNodeType;
|
|
7210
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7195
7211
|
QuestSID: string;
|
|
7196
7212
|
ShouldBeKilled: string;
|
|
7197
7213
|
SID: string;
|
|
@@ -7203,6 +7219,7 @@ export type QuestNodePrototypeOnMoneyAmountReachedEvent = GetStructType<{
|
|
|
7203
7219
|
LaunchOnQuestStart: boolean;
|
|
7204
7220
|
NodePrototypeVersion: number;
|
|
7205
7221
|
NodeType: "EQuestNodeType::OnMoneyAmountReachedEvent" & EQuestNodeType;
|
|
7222
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7206
7223
|
QuestSID: string;
|
|
7207
7224
|
SID: string;
|
|
7208
7225
|
TargetMoneyAmount: number;
|
|
@@ -7213,6 +7230,7 @@ export type QuestNodePrototypeOnNPCBecomeEnemyEvent = GetStructType<{
|
|
|
7213
7230
|
LaunchOnQuestStart: boolean;
|
|
7214
7231
|
NodePrototypeVersion: number;
|
|
7215
7232
|
NodeType: "EQuestNodeType::OnNPCBecomeEnemyEvent" & EQuestNodeType;
|
|
7233
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7216
7234
|
QuestSID: string;
|
|
7217
7235
|
Repeatable: boolean;
|
|
7218
7236
|
SID: string;
|
|
@@ -7224,6 +7242,7 @@ export type QuestNodePrototypeOnNPCBecomeFriendEvent = GetStructType<{
|
|
|
7224
7242
|
LaunchOnQuestStart: boolean;
|
|
7225
7243
|
NodePrototypeVersion: number;
|
|
7226
7244
|
NodeType: "EQuestNodeType::OnNPCBecomeFriendEvent" & EQuestNodeType;
|
|
7245
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7227
7246
|
QuestSID: string;
|
|
7228
7247
|
Repeatable: boolean;
|
|
7229
7248
|
SID: string;
|
|
@@ -7236,6 +7255,7 @@ export type QuestNodePrototypeOnNPCCreateEvent = GetStructType<{
|
|
|
7236
7255
|
LaunchOnQuestStart: boolean;
|
|
7237
7256
|
NodePrototypeVersion: number;
|
|
7238
7257
|
NodeType: "EQuestNodeType::OnNPCCreateEvent" & EQuestNodeType;
|
|
7258
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7239
7259
|
QuestSID: string;
|
|
7240
7260
|
SID: string;
|
|
7241
7261
|
TargetQuestGuid: string;
|
|
@@ -7247,6 +7267,7 @@ export type QuestNodePrototypeOnNPCDeathEvent = GetStructType<{
|
|
|
7247
7267
|
LaunchOnQuestStart: boolean;
|
|
7248
7268
|
NodePrototypeVersion: number;
|
|
7249
7269
|
NodeType: "EQuestNodeType::OnNPCDeathEvent" & EQuestNodeType;
|
|
7270
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7250
7271
|
QuestSID: string;
|
|
7251
7272
|
Repeatable: boolean;
|
|
7252
7273
|
SID: string;
|
|
@@ -7258,6 +7279,7 @@ export type QuestNodePrototypeOnNPCDefeatEvent = GetStructType<{
|
|
|
7258
7279
|
LaunchOnQuestStart: boolean;
|
|
7259
7280
|
NodePrototypeVersion: number;
|
|
7260
7281
|
NodeType: "EQuestNodeType::OnNPCDefeatEvent" & EQuestNodeType;
|
|
7282
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7261
7283
|
QuestSID: string;
|
|
7262
7284
|
SID: string;
|
|
7263
7285
|
TargetQuestGuid: string;
|
|
@@ -7271,6 +7293,7 @@ export type QuestNodePrototypeOnPlayerGetItemEvent = GetStructType<{
|
|
|
7271
7293
|
LaunchOnQuestStart: boolean;
|
|
7272
7294
|
NodePrototypeVersion: number;
|
|
7273
7295
|
NodeType: "EQuestNodeType::OnPlayerGetItemEvent" & EQuestNodeType;
|
|
7296
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7274
7297
|
QuestSID: string;
|
|
7275
7298
|
Repeatable: boolean;
|
|
7276
7299
|
SID: string;
|
|
@@ -7286,6 +7309,7 @@ export type QuestNodePrototypeOnPlayerLostItemEvent = GetStructType<{
|
|
|
7286
7309
|
LaunchOnQuestStart: boolean;
|
|
7287
7310
|
NodePrototypeVersion: number;
|
|
7288
7311
|
NodeType: "EQuestNodeType::OnPlayerLostItemEvent" & EQuestNodeType;
|
|
7312
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7289
7313
|
QuestSID: string;
|
|
7290
7314
|
Repeatable: boolean;
|
|
7291
7315
|
SID: string;
|
|
@@ -7297,6 +7321,7 @@ export type QuestNodePrototypeOnPlayerNoticedEvent = GetStructType<{
|
|
|
7297
7321
|
LaunchOnQuestStart: number;
|
|
7298
7322
|
NodePrototypeVersion: number;
|
|
7299
7323
|
NodeType: "EQuestNodeType::OnPlayerNoticedEvent" & EQuestNodeType;
|
|
7324
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7300
7325
|
QuestSID: string;
|
|
7301
7326
|
Repeatable: boolean;
|
|
7302
7327
|
SID: string;
|
|
@@ -7309,6 +7334,7 @@ export type QuestNodePrototypeOnPlayerRankReachedEvent = GetStructType<{
|
|
|
7309
7334
|
LaunchOnQuestStart: boolean;
|
|
7310
7335
|
NodePrototypeVersion: number;
|
|
7311
7336
|
NodeType: "EQuestNodeType::OnPlayerRankReachedEvent" & EQuestNodeType;
|
|
7337
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7312
7338
|
QuestSID: string;
|
|
7313
7339
|
SID: string;
|
|
7314
7340
|
TargetRank: ERank;
|
|
@@ -7320,6 +7346,7 @@ export type QuestNodePrototypeOnSignalReceived = GetStructType<{
|
|
|
7320
7346
|
LaunchOnQuestStart: boolean;
|
|
7321
7347
|
NodePrototypeVersion: number;
|
|
7322
7348
|
NodeType: "EQuestNodeType::OnSignalReceived" & EQuestNodeType;
|
|
7349
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7323
7350
|
QuestSID: string;
|
|
7324
7351
|
Repeatable: boolean;
|
|
7325
7352
|
SID: string;
|
|
@@ -7332,6 +7359,7 @@ export type QuestNodePrototypeOnTickEvent = GetStructType<{
|
|
|
7332
7359
|
LaunchOnQuestStart: boolean;
|
|
7333
7360
|
NodePrototypeVersion: number;
|
|
7334
7361
|
NodeType: "EQuestNodeType::OnTickEvent" & EQuestNodeType;
|
|
7362
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7335
7363
|
QuestSID: string;
|
|
7336
7364
|
SID: string;
|
|
7337
7365
|
TrackBeforeActive: boolean;
|
|
@@ -7341,6 +7369,7 @@ export type QuestNodePrototypeOnUpgradeInstallEvent = GetStructType<{
|
|
|
7341
7369
|
LaunchOnQuestStart: boolean;
|
|
7342
7370
|
NodePrototypeVersion: number;
|
|
7343
7371
|
NodeType: "EQuestNodeType::OnUpgradeInstallEvent" & EQuestNodeType;
|
|
7372
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7344
7373
|
QuestSID: string;
|
|
7345
7374
|
SID: string;
|
|
7346
7375
|
TrackBeforeActive: boolean;
|
|
@@ -7876,7 +7905,7 @@ export type QuestNodePrototypeShowFadeScreen = GetStructType<{
|
|
|
7876
7905
|
SID: string;
|
|
7877
7906
|
}>;
|
|
7878
7907
|
export type QuestNodePrototypeShowLoadingScreen = GetStructType<{
|
|
7879
|
-
Launchers:
|
|
7908
|
+
Launchers: QuestNodePrototypeLaunchers;
|
|
7880
7909
|
LoadingScreenType: ELoadingDestination;
|
|
7881
7910
|
NodePrototypeVersion: number;
|
|
7882
7911
|
NodeType: "EQuestNodeType::ShowLoadingScreen" & EQuestNodeType;
|