s2cfgtojson 7.0.21 → 7.0.23
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/enums.d.mts +1 -1
- package/dist/types.d.mts +389 -944
- package/package.json +4 -1
package/dist/types.d.mts
CHANGED
|
@@ -6504,172 +6504,108 @@ export type QuestMeshGeneratorPrototypeVariationsItem = GetStructType<{
|
|
|
6504
6504
|
VariationIndex: number;
|
|
6505
6505
|
Weight: number;
|
|
6506
6506
|
}>;
|
|
6507
|
-
export
|
|
6508
|
-
export type QuestNodePrototypeAchievementUnlock = GetStructType<{
|
|
6509
|
-
AchievementSID: string;
|
|
6507
|
+
export interface QuestNodePrototype extends GetStructType<{}> {
|
|
6510
6508
|
Launchers: QuestNodePrototypeLaunchers;
|
|
6511
6509
|
NodePrototypeVersion: number;
|
|
6512
|
-
NodeType:
|
|
6510
|
+
NodeType: EQuestNodeType;
|
|
6513
6511
|
QuestSID: string;
|
|
6512
|
+
Repeatable: boolean;
|
|
6514
6513
|
SID: string;
|
|
6515
|
-
}
|
|
6516
|
-
export
|
|
6514
|
+
}
|
|
6515
|
+
export interface QuestNodePrototypeAchievementUnlock extends QuestNodePrototype {
|
|
6516
|
+
AchievementSID: string;
|
|
6517
|
+
NodeType: "EQuestNodeType::AchievementUnlock";
|
|
6518
|
+
}
|
|
6519
|
+
export interface QuestNodePrototypeActivateAnomaly extends QuestNodePrototype {
|
|
6517
6520
|
Continue: boolean;
|
|
6518
6521
|
Description: string;
|
|
6519
|
-
|
|
6520
|
-
NodePrototypeVersion: number;
|
|
6521
|
-
NodeType: "EQuestNodeType::ActivateAnomaly" & EQuestNodeType;
|
|
6522
|
-
QuestSID: string;
|
|
6523
|
-
Repeatable: boolean;
|
|
6524
|
-
SID: string;
|
|
6522
|
+
NodeType: "EQuestNodeType::ActivateAnomaly";
|
|
6525
6523
|
StartQuest: boolean;
|
|
6526
6524
|
TargetQuestGuid: string;
|
|
6527
|
-
}
|
|
6528
|
-
export
|
|
6525
|
+
}
|
|
6526
|
+
export interface QuestNodePrototypeActivateDataLayerCombination extends QuestNodePrototype {
|
|
6529
6527
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6530
6528
|
DataLayerCombination: string;
|
|
6531
|
-
|
|
6532
|
-
|
|
6533
|
-
|
|
6534
|
-
QuestSID: string;
|
|
6535
|
-
SID: string;
|
|
6536
|
-
}>;
|
|
6537
|
-
export type QuestNodePrototypeActivateInteractableObject = GetStructType<{
|
|
6529
|
+
NodeType: "EQuestNodeType::ActivateDataLayerCombination";
|
|
6530
|
+
}
|
|
6531
|
+
export interface QuestNodePrototypeActivateInteractableObject extends QuestNodePrototype {
|
|
6538
6532
|
InteractableQuestGuid: string;
|
|
6539
|
-
|
|
6540
|
-
NodePrototypeVersion: number;
|
|
6541
|
-
NodeType: "EQuestNodeType::ActivateInteractableObject" & EQuestNodeType;
|
|
6533
|
+
NodeType: "EQuestNodeType::ActivateInteractableObject";
|
|
6542
6534
|
OutputPinNames: QuestNodePrototypeOutputPinNames;
|
|
6543
|
-
|
|
6544
|
-
|
|
6545
|
-
SID: string;
|
|
6546
|
-
}>;
|
|
6547
|
-
export type QuestNodePrototypeActivateRestrictor = GetStructType<{
|
|
6535
|
+
}
|
|
6536
|
+
export interface QuestNodePrototypeActivateRestrictor extends QuestNodePrototype {
|
|
6548
6537
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6549
|
-
|
|
6550
|
-
NodePrototypeVersion: number;
|
|
6551
|
-
NodeType: "EQuestNodeType::ActivateRestrictor" & EQuestNodeType;
|
|
6552
|
-
QuestSID: string;
|
|
6553
|
-
Repeatable: boolean;
|
|
6554
|
-
SID: string;
|
|
6538
|
+
NodeType: "EQuestNodeType::ActivateRestrictor";
|
|
6555
6539
|
VolumeGuid: string;
|
|
6556
|
-
}
|
|
6557
|
-
export
|
|
6540
|
+
}
|
|
6541
|
+
export interface QuestNodePrototypeAddNote extends QuestNodePrototype {
|
|
6558
6542
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6559
|
-
|
|
6560
|
-
NodePrototypeVersion: number;
|
|
6561
|
-
NodeType: "EQuestNodeType::AddNote" & EQuestNodeType;
|
|
6543
|
+
NodeType: "EQuestNodeType::AddNote";
|
|
6562
6544
|
NotePrototypeSID: string;
|
|
6563
6545
|
PlayWhenReceived: boolean;
|
|
6564
|
-
|
|
6565
|
-
|
|
6566
|
-
|
|
6567
|
-
export type QuestNodePrototypeAddOrRemoveFromSquad = GetStructType<{
|
|
6568
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
6569
|
-
NodePrototypeVersion: number;
|
|
6570
|
-
NodeType: "EQuestNodeType::AddOrRemoveFromSquad" & EQuestNodeType;
|
|
6571
|
-
QuestSID: string;
|
|
6546
|
+
}
|
|
6547
|
+
export interface QuestNodePrototypeAddOrRemoveFromSquad extends QuestNodePrototype {
|
|
6548
|
+
NodeType: "EQuestNodeType::AddOrRemoveFromSquad";
|
|
6572
6549
|
Remove: boolean;
|
|
6573
|
-
SID: string;
|
|
6574
6550
|
Squad: string;
|
|
6575
6551
|
TargetQuestGuid: string;
|
|
6576
|
-
}
|
|
6577
|
-
export
|
|
6578
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
6552
|
+
}
|
|
6553
|
+
export interface QuestNodePrototypeAddTechnicianSkillOrUpgrade extends QuestNodePrototype {
|
|
6579
6554
|
NewTechnicianSkill: string;
|
|
6580
|
-
|
|
6581
|
-
NodeType: "EQuestNodeType::AddTechnicianSkillOrUpgrade" & EQuestNodeType;
|
|
6582
|
-
QuestSID: string;
|
|
6583
|
-
SID: string;
|
|
6555
|
+
NodeType: "EQuestNodeType::AddTechnicianSkillOrUpgrade";
|
|
6584
6556
|
TargetQuestGuid: string;
|
|
6585
6557
|
UpgradeSIDs: QuestNodePrototypeUpgradeSIDs;
|
|
6586
|
-
}
|
|
6587
|
-
export
|
|
6588
|
-
|
|
6589
|
-
NodePrototypeVersion: number;
|
|
6590
|
-
NodeType: "EQuestNodeType::AddTutorialToPDA" & EQuestNodeType;
|
|
6558
|
+
}
|
|
6559
|
+
export interface QuestNodePrototypeAddTutorialToPDA extends QuestNodePrototype {
|
|
6560
|
+
NodeType: "EQuestNodeType::AddTutorialToPDA";
|
|
6591
6561
|
PDATutorialNoteSID: string;
|
|
6592
|
-
QuestSID: string;
|
|
6593
6562
|
RequiredInputs: string;
|
|
6594
|
-
|
|
6595
|
-
|
|
6596
|
-
export type QuestNodePrototypeALifeDirectorZoneSwitch = GetStructType<{
|
|
6597
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
6563
|
+
}
|
|
6564
|
+
export interface QuestNodePrototypeALifeDirectorZoneSwitch extends QuestNodePrototype {
|
|
6598
6565
|
NewZoneState: boolean;
|
|
6599
|
-
|
|
6600
|
-
NodeType: "EQuestNodeType::ALifeDirectorZoneSwitch" & EQuestNodeType;
|
|
6566
|
+
NodeType: "EQuestNodeType::ALifeDirectorZoneSwitch";
|
|
6601
6567
|
OverrideScenarioGroupSID: string;
|
|
6602
|
-
QuestSID: string;
|
|
6603
|
-
SID: string;
|
|
6604
6568
|
TargetQuestGuid: string;
|
|
6605
|
-
}
|
|
6569
|
+
}
|
|
6606
6570
|
export type QuestNodePrototypeAudioLocalizedAssetsToLoad = GetStructType<QuestNodePrototypeAudioLocalizedAssetsToLoadItem[]>;
|
|
6607
6571
|
export type QuestNodePrototypeAudioLocalizedAssetsToLoadItem = StringArray;
|
|
6608
|
-
export
|
|
6609
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
6610
|
-
NodePrototypeVersion: number;
|
|
6572
|
+
export interface QuestNodePrototypeBridgeCleanUp extends QuestNodePrototype {
|
|
6611
6573
|
NodesToCleanUpResults: ObjPrototypeApplicableMechanicsEffects;
|
|
6612
|
-
NodeType: "EQuestNodeType::BridgeCleanUp"
|
|
6613
|
-
|
|
6614
|
-
|
|
6615
|
-
SID: string;
|
|
6616
|
-
}>;
|
|
6617
|
-
export type QuestNodePrototypeBridgeEvent = GetStructType<{
|
|
6574
|
+
NodeType: "EQuestNodeType::BridgeCleanUp";
|
|
6575
|
+
}
|
|
6576
|
+
export interface QuestNodePrototypeBridgeEvent extends QuestNodePrototype {
|
|
6618
6577
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6619
6578
|
EventType: EQuestEventType;
|
|
6620
6579
|
LaunchOnQuestStart: boolean;
|
|
6621
6580
|
LinkedNodePrototypeSID: string;
|
|
6622
|
-
|
|
6623
|
-
NodeType: "EQuestNodeType::BridgeEvent" & EQuestNodeType;
|
|
6624
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
6581
|
+
NodeType: "EQuestNodeType::BridgeEvent";
|
|
6625
6582
|
OutputPinNames: QuestNodePrototypeOutputPinNames;
|
|
6626
|
-
QuestSID: string;
|
|
6627
|
-
Repeatable: boolean;
|
|
6628
|
-
SID: string;
|
|
6629
6583
|
TrackBeforeActive: boolean;
|
|
6630
|
-
}
|
|
6631
|
-
export
|
|
6632
|
-
|
|
6633
|
-
|
|
6634
|
-
|
|
6635
|
-
|
|
6636
|
-
SID: string;
|
|
6637
|
-
}>;
|
|
6638
|
-
export type QuestNodePrototypeChangeFaction = GetStructType<{
|
|
6639
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
6640
|
-
NodePrototypeVersion: number;
|
|
6641
|
-
NodeType: "EQuestNodeType::ChangeFaction" & EQuestNodeType;
|
|
6642
|
-
QuestSID: string;
|
|
6643
|
-
SID: string;
|
|
6584
|
+
}
|
|
6585
|
+
export interface QuestNodePrototypeCancelAllSideQuests extends QuestNodePrototype {
|
|
6586
|
+
NodeType: "EQuestNodeType::CancelAllSideQuests";
|
|
6587
|
+
}
|
|
6588
|
+
export interface QuestNodePrototypeChangeFaction extends QuestNodePrototype {
|
|
6589
|
+
NodeType: "EQuestNodeType::ChangeFaction";
|
|
6644
6590
|
TargetFaction: string;
|
|
6645
6591
|
TargetQuestGuid: string;
|
|
6646
|
-
}
|
|
6647
|
-
export
|
|
6592
|
+
}
|
|
6593
|
+
export interface QuestNodePrototypeChangeRelationships extends QuestNodePrototype {
|
|
6648
6594
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6649
6595
|
FirstTargetSID: string;
|
|
6650
|
-
|
|
6651
|
-
NodePrototypeVersion: number;
|
|
6652
|
-
NodeType: "EQuestNodeType::ChangeRelationships" & EQuestNodeType;
|
|
6653
|
-
QuestSID: string;
|
|
6596
|
+
NodeType: "EQuestNodeType::ChangeRelationships";
|
|
6654
6597
|
RelationshipValue: number;
|
|
6655
|
-
Repeatable: boolean;
|
|
6656
6598
|
SecondTargetSID: string;
|
|
6657
6599
|
SetFactionRelationshipAsPersonal: boolean;
|
|
6658
6600
|
ShouldLockPersonalRelationship: boolean;
|
|
6659
|
-
SID: string;
|
|
6660
6601
|
UseDeltaValue: boolean;
|
|
6661
6602
|
UsePreset: boolean;
|
|
6662
|
-
}
|
|
6663
|
-
export
|
|
6603
|
+
}
|
|
6604
|
+
export interface QuestNodePrototypeCondition extends QuestNodePrototype {
|
|
6664
6605
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6665
6606
|
Conditions: QuestNodePrototypeConditions;
|
|
6666
|
-
|
|
6667
|
-
|
|
6668
|
-
NodeType: "EQuestNodeType::Condition" & EQuestNodeType;
|
|
6669
|
-
QuestSID: string;
|
|
6670
|
-
Repeatable: boolean;
|
|
6671
|
-
SID: string;
|
|
6672
|
-
}>;
|
|
6607
|
+
NodeType: "EQuestNodeType::Condition";
|
|
6608
|
+
}
|
|
6673
6609
|
export type QuestNodePrototypeConditions = GetStructType<{
|
|
6674
6610
|
ConditionCheckType: EConditionCheckType;
|
|
6675
6611
|
}> & GetStructType<QuestNodePrototypeConditionsItem[]>;
|
|
@@ -6740,217 +6676,131 @@ export type QuestNodePrototypeConnectionsItem = GetStructType<{
|
|
|
6740
6676
|
Name: string;
|
|
6741
6677
|
SID: string;
|
|
6742
6678
|
}>;
|
|
6743
|
-
export
|
|
6679
|
+
export interface QuestNodePrototypeConsoleCommand extends QuestNodePrototype {
|
|
6744
6680
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6745
6681
|
ConsoleCommand: string;
|
|
6746
|
-
|
|
6747
|
-
|
|
6748
|
-
|
|
6749
|
-
QuestSID: string;
|
|
6750
|
-
Repeatable: boolean;
|
|
6751
|
-
SID: string;
|
|
6752
|
-
}>;
|
|
6753
|
-
export type QuestNodePrototypeContainer = GetStructType<{
|
|
6682
|
+
NodeType: "EQuestNodeType::ConsoleCommand";
|
|
6683
|
+
}
|
|
6684
|
+
export interface QuestNodePrototypeContainer extends QuestNodePrototype {
|
|
6754
6685
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6755
6686
|
ContaineredQuestPrototypeSID: string;
|
|
6756
|
-
|
|
6757
|
-
NodePrototypeVersion: number;
|
|
6758
|
-
NodeType: "EQuestNodeType::Container" & EQuestNodeType;
|
|
6687
|
+
NodeType: "EQuestNodeType::Container";
|
|
6759
6688
|
OutputPinNames: QuestNodePrototypeOutputPinNames;
|
|
6760
|
-
|
|
6761
|
-
|
|
6762
|
-
SID: string;
|
|
6763
|
-
}>;
|
|
6764
|
-
export type QuestNodePrototypeDeactivateZone = GetStructType<{
|
|
6689
|
+
}
|
|
6690
|
+
export interface QuestNodePrototypeDeactivateZone extends QuestNodePrototype {
|
|
6765
6691
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6766
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
6767
6692
|
NavModifier: string;
|
|
6768
|
-
|
|
6769
|
-
NodeType: "EQuestNodeType::DeactivateZone" & EQuestNodeType;
|
|
6770
|
-
QuestSID: string;
|
|
6771
|
-
Repeatable: boolean;
|
|
6772
|
-
SID: string;
|
|
6693
|
+
NodeType: "EQuestNodeType::DeactivateZone";
|
|
6773
6694
|
TargetQuestGuid: string;
|
|
6774
|
-
}
|
|
6775
|
-
export
|
|
6695
|
+
}
|
|
6696
|
+
export interface QuestNodePrototypeDespawn extends QuestNodePrototype {
|
|
6776
6697
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6777
|
-
|
|
6778
|
-
NodePrototypeVersion: number;
|
|
6779
|
-
NodeType: "EQuestNodeType::Despawn" & EQuestNodeType;
|
|
6780
|
-
QuestSID: string;
|
|
6781
|
-
Repeatable: boolean;
|
|
6782
|
-
SID: string;
|
|
6698
|
+
NodeType: "EQuestNodeType::Despawn";
|
|
6783
6699
|
SpawnNodeExcludeType: ESpawnNodeExcludeType;
|
|
6784
6700
|
SpecificItemDespawn: boolean;
|
|
6785
6701
|
TargetQuestGuid: string;
|
|
6786
|
-
}
|
|
6702
|
+
}
|
|
6787
6703
|
export type QuestNodePrototypeDialogMembersItem = GetStructType<{
|
|
6788
6704
|
DialogMemberGuid: string;
|
|
6789
6705
|
TalkThroughRadio: boolean;
|
|
6790
6706
|
}>;
|
|
6791
6707
|
export type QuestNodePrototypeDialogObjectLocation = GetStructType<AIGlobalRelativeLocation[]>;
|
|
6792
6708
|
export type QuestNodePrototypeDisabledEvents = GetStructType<EDialogEventType[]>;
|
|
6793
|
-
export
|
|
6709
|
+
export interface QuestNodePrototypeDisableNPCBark extends QuestNodePrototype {
|
|
6794
6710
|
DisabledEvents: string;
|
|
6795
|
-
|
|
6796
|
-
NodePrototypeVersion: number;
|
|
6797
|
-
NodeType: "EQuestNodeType::DisableNPCBark" & EQuestNodeType;
|
|
6798
|
-
QuestSID: string;
|
|
6799
|
-
SID: string;
|
|
6711
|
+
NodeType: "EQuestNodeType::DisableNPCBark";
|
|
6800
6712
|
TargetQuestGuid: string;
|
|
6801
|
-
}
|
|
6802
|
-
export
|
|
6713
|
+
}
|
|
6714
|
+
export interface QuestNodePrototypeDisableNPCInteraction extends QuestNodePrototype {
|
|
6803
6715
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6804
|
-
|
|
6805
|
-
NodePrototypeVersion: number;
|
|
6806
|
-
NodeType: "EQuestNodeType::DisableNPCInteraction" & EQuestNodeType;
|
|
6807
|
-
QuestSID: string;
|
|
6716
|
+
NodeType: "EQuestNodeType::DisableNPCInteraction";
|
|
6808
6717
|
RestrictDeadBodyDespawn: boolean;
|
|
6809
6718
|
RestrictDeadBodyLootInteraction: boolean;
|
|
6810
6719
|
RestrictDeadBodyMovementInteraction: boolean;
|
|
6811
6720
|
RestrictDefeatStateInteraction: boolean;
|
|
6812
6721
|
RestrictDefeatStateMovementInteraction: boolean;
|
|
6813
6722
|
RestrictDialogInteractions: boolean;
|
|
6814
|
-
SID: string;
|
|
6815
6723
|
TargetQuestGuid: string;
|
|
6816
|
-
}
|
|
6817
|
-
export
|
|
6724
|
+
}
|
|
6725
|
+
export interface QuestNodePrototypeEmissionScheduleControl extends QuestNodePrototype {
|
|
6818
6726
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6819
|
-
|
|
6820
|
-
NodePrototypeVersion: number;
|
|
6821
|
-
NodeType: "EQuestNodeType::EmissionScheduleControl" & EQuestNodeType;
|
|
6727
|
+
NodeType: "EQuestNodeType::EmissionScheduleControl";
|
|
6822
6728
|
PauseEmission: boolean;
|
|
6823
|
-
|
|
6824
|
-
|
|
6825
|
-
SID: string;
|
|
6826
|
-
}>;
|
|
6827
|
-
export type QuestNodePrototypeEmissionStart = GetStructType<{
|
|
6729
|
+
}
|
|
6730
|
+
export interface QuestNodePrototypeEmissionStart extends QuestNodePrototype {
|
|
6828
6731
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6829
6732
|
EmissionPrototypeSID: string;
|
|
6830
6733
|
ForceEmission: boolean;
|
|
6831
|
-
|
|
6832
|
-
NodePrototypeVersion: number;
|
|
6833
|
-
NodeType: "EQuestNodeType::EmissionStart" & EQuestNodeType;
|
|
6834
|
-
QuestSID: string;
|
|
6835
|
-
SID: string;
|
|
6734
|
+
NodeType: "EQuestNodeType::EmissionStart";
|
|
6836
6735
|
StartQuest: boolean;
|
|
6837
6736
|
UseDefaultEmissionPrototype: boolean;
|
|
6838
|
-
}
|
|
6839
|
-
export
|
|
6737
|
+
}
|
|
6738
|
+
export interface QuestNodePrototypeEnableDataLayer extends QuestNodePrototype {
|
|
6840
6739
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6841
6740
|
DataLayerName: string;
|
|
6842
6741
|
IsDataLayerEnabled: boolean;
|
|
6843
|
-
|
|
6844
|
-
|
|
6845
|
-
|
|
6846
|
-
QuestSID: string;
|
|
6847
|
-
Repeatable: boolean;
|
|
6848
|
-
SID: string;
|
|
6849
|
-
}>;
|
|
6850
|
-
export type QuestNodePrototypeEnd = GetStructType<{
|
|
6742
|
+
NodeType: "EQuestNodeType::EnableDataLayer";
|
|
6743
|
+
}
|
|
6744
|
+
export interface QuestNodePrototypeEnd extends QuestNodePrototype {
|
|
6851
6745
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6852
6746
|
ExcludeAllNodesInContainer: boolean;
|
|
6853
|
-
|
|
6854
|
-
|
|
6855
|
-
|
|
6856
|
-
QuestSID: string;
|
|
6857
|
-
SID: string;
|
|
6858
|
-
}>;
|
|
6859
|
-
export type QuestNodePrototypeEquipItemInHands = GetStructType<{
|
|
6747
|
+
NodeType: "EQuestNodeType::End";
|
|
6748
|
+
}
|
|
6749
|
+
export interface QuestNodePrototypeEquipItemInHands extends QuestNodePrototype {
|
|
6860
6750
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6861
6751
|
EquipmentItemSID: string;
|
|
6862
6752
|
EquipmentTypeFilter: EMainHandEquipmentType;
|
|
6863
|
-
|
|
6864
|
-
NodePrototypeVersion: number;
|
|
6865
|
-
NodeType: "EQuestNodeType::EquipItemInHands" & EQuestNodeType;
|
|
6866
|
-
QuestSID: string;
|
|
6867
|
-
SID: string;
|
|
6753
|
+
NodeType: "EQuestNodeType::EquipItemInHands";
|
|
6868
6754
|
TargetQuestGuid: string;
|
|
6869
|
-
}
|
|
6870
|
-
export
|
|
6755
|
+
}
|
|
6756
|
+
export interface QuestNodePrototypeFlashlightOnOff extends QuestNodePrototype {
|
|
6871
6757
|
DisableFlashlightControl: boolean;
|
|
6872
6758
|
FlashlightAction: EFlashlightAction;
|
|
6873
|
-
|
|
6874
|
-
NodePrototypeVersion: number;
|
|
6875
|
-
NodeType: "EQuestNodeType::FlashlightOnOff" & EQuestNodeType;
|
|
6876
|
-
QuestSID: string;
|
|
6877
|
-
SID: string;
|
|
6759
|
+
NodeType: "EQuestNodeType::FlashlightOnOff";
|
|
6878
6760
|
TargetQuestGuid: string;
|
|
6879
|
-
}
|
|
6880
|
-
export
|
|
6761
|
+
}
|
|
6762
|
+
export interface QuestNodePrototypeForceInteract extends QuestNodePrototype {
|
|
6881
6763
|
IgnoreEnabledCheck: boolean;
|
|
6882
6764
|
InteractableQuestGuid: string;
|
|
6883
|
-
|
|
6884
|
-
|
|
6885
|
-
|
|
6886
|
-
|
|
6887
|
-
SID: string;
|
|
6888
|
-
}>;
|
|
6889
|
-
export type QuestNodePrototypeGiveCache = GetStructType<{
|
|
6890
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
6891
|
-
NodePrototypeVersion: number;
|
|
6892
|
-
NodeType: "EQuestNodeType::GiveCache" & EQuestNodeType;
|
|
6765
|
+
NodeType: "EQuestNodeType::ForceInteract";
|
|
6766
|
+
}
|
|
6767
|
+
export interface QuestNodePrototypeGiveCache extends QuestNodePrototype {
|
|
6768
|
+
NodeType: "EQuestNodeType::GiveCache";
|
|
6893
6769
|
QuestItemGeneratorSID: string;
|
|
6894
|
-
QuestSID: string;
|
|
6895
|
-
SID: string;
|
|
6896
6770
|
TargetQuestGuid: string;
|
|
6897
|
-
}
|
|
6898
|
-
export
|
|
6899
|
-
|
|
6900
|
-
|
|
6901
|
-
|
|
6902
|
-
|
|
6903
|
-
SID: string;
|
|
6904
|
-
}>;
|
|
6905
|
-
export type QuestNodePrototypeHideTutorial = GetStructType<{
|
|
6906
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
6907
|
-
NodePrototypeVersion: number;
|
|
6908
|
-
NodeType: "EQuestNodeType::HideTutorial" & EQuestNodeType;
|
|
6909
|
-
QuestSID: string;
|
|
6910
|
-
Repeatable: boolean;
|
|
6911
|
-
SID: string;
|
|
6771
|
+
}
|
|
6772
|
+
export interface QuestNodePrototypeHideLoadingScreen extends QuestNodePrototype {
|
|
6773
|
+
NodeType: "EQuestNodeType::HideLoadingScreen";
|
|
6774
|
+
}
|
|
6775
|
+
export interface QuestNodePrototypeHideTutorial extends QuestNodePrototype {
|
|
6776
|
+
NodeType: "EQuestNodeType::HideTutorial";
|
|
6912
6777
|
WidgetType: number;
|
|
6913
|
-
}
|
|
6914
|
-
export
|
|
6778
|
+
}
|
|
6779
|
+
export interface QuestNodePrototypeIf extends QuestNodePrototype {
|
|
6915
6780
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6916
6781
|
Conditions: QuestNodePrototypeConditions;
|
|
6917
|
-
|
|
6918
|
-
|
|
6919
|
-
NodeType: "EQuestNodeType::If" & EQuestNodeType;
|
|
6920
|
-
QuestSID: string;
|
|
6921
|
-
Repeatable: boolean;
|
|
6922
|
-
SID: string;
|
|
6923
|
-
}>;
|
|
6782
|
+
NodeType: "EQuestNodeType::If";
|
|
6783
|
+
}
|
|
6924
6784
|
export type QuestNodePrototypeInfotopicLastPhrases = GetStructType<QuestNodePrototypeInfotopicLastPhrasesItem[]>;
|
|
6925
6785
|
export type QuestNodePrototypeInfotopicLastPhrasesItem = GetStructType<{
|
|
6926
6786
|
LastPhraseSID: string;
|
|
6927
6787
|
NextLaunchedPhraseSID: string;
|
|
6928
6788
|
}>;
|
|
6929
|
-
export
|
|
6789
|
+
export interface QuestNodePrototypeItemAdd extends QuestNodePrototype {
|
|
6930
6790
|
AddToPlayerStash: boolean;
|
|
6931
6791
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6932
6792
|
ItemsCount: number;
|
|
6933
6793
|
ItemSID: string;
|
|
6934
|
-
|
|
6935
|
-
NodePrototypeVersion: number;
|
|
6936
|
-
NodeType: "EQuestNodeType::ItemAdd" & EQuestNodeType;
|
|
6937
|
-
QuestSID: string;
|
|
6938
|
-
Repeatable: boolean;
|
|
6939
|
-
SID: string;
|
|
6794
|
+
NodeType: "EQuestNodeType::ItemAdd";
|
|
6940
6795
|
TargetQuestGuid: string;
|
|
6941
|
-
}
|
|
6942
|
-
export
|
|
6796
|
+
}
|
|
6797
|
+
export interface QuestNodePrototypeItemRemove extends QuestNodePrototype {
|
|
6943
6798
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
6944
6799
|
ItemsCount: number;
|
|
6945
6800
|
ItemSID: string;
|
|
6946
|
-
|
|
6947
|
-
NodePrototypeVersion: number;
|
|
6948
|
-
NodeType: "EQuestNodeType::ItemRemove" & EQuestNodeType;
|
|
6949
|
-
QuestSID: string;
|
|
6950
|
-
Repeatable: boolean;
|
|
6951
|
-
SID: string;
|
|
6801
|
+
NodeType: "EQuestNodeType::ItemRemove";
|
|
6952
6802
|
TargetQuestGuid: string;
|
|
6953
|
-
}
|
|
6803
|
+
}
|
|
6954
6804
|
export type QuestNodePrototypeLastPhrases = GetStructType<QuestNodePrototypeLastPhrasesItem[]>;
|
|
6955
6805
|
export type QuestNodePrototypeLastPhrasesItem = GetStructType<{
|
|
6956
6806
|
FinishNode: boolean;
|
|
@@ -6962,16 +6812,12 @@ export type QuestNodePrototypeLaunchersItem = GetStructType<{
|
|
|
6962
6812
|
Connections: QuestNodePrototypeConnections;
|
|
6963
6813
|
Excluding: boolean;
|
|
6964
6814
|
}>;
|
|
6965
|
-
export
|
|
6815
|
+
export interface QuestNodePrototypeLoadAsset extends QuestNodePrototype {
|
|
6966
6816
|
AssetsToLoad: string;
|
|
6967
6817
|
AudioLocalizedAssetsToLoad: QuestNodePrototypeAudioLocalizedAssetsToLoad;
|
|
6968
|
-
|
|
6969
|
-
|
|
6970
|
-
|
|
6971
|
-
QuestSID: string;
|
|
6972
|
-
SID: string;
|
|
6973
|
-
}>;
|
|
6974
|
-
export type QuestNodePrototypeLookAt = GetStructType<{
|
|
6818
|
+
NodeType: "EQuestNodeType::LoadAsset";
|
|
6819
|
+
}
|
|
6820
|
+
export interface QuestNodePrototypeLookAt extends QuestNodePrototype {
|
|
6975
6821
|
ActorBoneName: string;
|
|
6976
6822
|
ApplyRestrictionType: EApplyRestrictionType | number;
|
|
6977
6823
|
AttractionPointType: EAttractionPointType | number;
|
|
@@ -6979,25 +6825,20 @@ export type QuestNodePrototypeLookAt = GetStructType<{
|
|
|
6979
6825
|
CollisionChannel: number;
|
|
6980
6826
|
Duration: number;
|
|
6981
6827
|
EnteringDuration: number;
|
|
6982
|
-
Launchers: string;
|
|
6983
6828
|
LookAtActorFName: string;
|
|
6984
6829
|
LookAtLocation: AIGlobalRelativeLocation;
|
|
6985
6830
|
LookAtPlaceholder: string;
|
|
6986
|
-
|
|
6987
|
-
NodeType: "EQuestNodeType::LookAt" & EQuestNodeType;
|
|
6831
|
+
NodeType: "EQuestNodeType::LookAt";
|
|
6988
6832
|
PresetName: string;
|
|
6989
6833
|
Priority: number;
|
|
6990
|
-
QuestSID: string;
|
|
6991
6834
|
ReactionTime: number;
|
|
6992
|
-
Repeatable: boolean;
|
|
6993
6835
|
RotationFreemoveEdge: number;
|
|
6994
6836
|
RotationStopEdge: number;
|
|
6995
|
-
SID: string;
|
|
6996
6837
|
TargetQuestGuid: string;
|
|
6997
6838
|
X: number;
|
|
6998
6839
|
Y: number;
|
|
6999
6840
|
Z: number;
|
|
7000
|
-
}
|
|
6841
|
+
}
|
|
7001
6842
|
export type QuestNodePrototypeMarkers = GetStructType<QuestNodePrototypeMarkersItem[]>;
|
|
7002
6843
|
export type QuestNodePrototypeMarkersItem = GetStructType<{
|
|
7003
6844
|
AddOnCondition: boolean;
|
|
@@ -7008,373 +6849,236 @@ export type QuestNodePrototypeMarkersItem = GetStructType<{
|
|
|
7008
6849
|
RemoveOnCondition: boolean;
|
|
7009
6850
|
ZoneSubMarkers: QuestNodePrototypeZoneSubMarkers;
|
|
7010
6851
|
}>;
|
|
7011
|
-
export
|
|
7012
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
6852
|
+
export interface QuestNodePrototypeMoveInventory extends QuestNodePrototype {
|
|
7013
6853
|
MoveFrom: string;
|
|
7014
6854
|
MoveQuestItems: boolean;
|
|
7015
6855
|
MoveTo: string;
|
|
7016
|
-
|
|
7017
|
-
NodeType: "EQuestNodeType::MoveInventory" & EQuestNodeType;
|
|
7018
|
-
QuestSID: string;
|
|
7019
|
-
SID: string;
|
|
6856
|
+
NodeType: "EQuestNodeType::MoveInventory";
|
|
7020
6857
|
WithEquipped: boolean;
|
|
7021
|
-
}
|
|
7022
|
-
export
|
|
6858
|
+
}
|
|
6859
|
+
export interface QuestNodePrototypeNPCBark extends QuestNodePrototype {
|
|
7023
6860
|
Event: EDialogEventType;
|
|
7024
|
-
|
|
7025
|
-
NodePrototypeVersion: number;
|
|
7026
|
-
NodeType: "EQuestNodeType::NPCBark" & EQuestNodeType;
|
|
7027
|
-
QuestSID: string;
|
|
7028
|
-
Repeatable: boolean;
|
|
7029
|
-
SID: string;
|
|
6861
|
+
NodeType: "EQuestNodeType::NPCBark";
|
|
7030
6862
|
TargetQuestGuid: string;
|
|
7031
|
-
}
|
|
7032
|
-
export
|
|
6863
|
+
}
|
|
6864
|
+
export interface QuestNodePrototypeOnAbilityEndedEvent extends QuestNodePrototype {
|
|
7033
6865
|
AbilityPrototypeSID: string;
|
|
7034
6866
|
EventType: EQuestEventType;
|
|
7035
6867
|
LaunchOnQuestStart: boolean;
|
|
7036
|
-
|
|
7037
|
-
NodeType: "EQuestNodeType::OnAbilityEndedEvent" & EQuestNodeType;
|
|
7038
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7039
|
-
QuestSID: string;
|
|
7040
|
-
SID: string;
|
|
6868
|
+
NodeType: "EQuestNodeType::OnAbilityEndedEvent";
|
|
7041
6869
|
TargetQuestGuid: string;
|
|
7042
6870
|
TrackBeforeActive: boolean;
|
|
7043
|
-
}
|
|
7044
|
-
export
|
|
6871
|
+
}
|
|
6872
|
+
export interface QuestNodePrototypeOnAbilityUsedEvent extends QuestNodePrototype {
|
|
7045
6873
|
AbilityPrototypeSID: string;
|
|
7046
6874
|
EventType: EQuestEventType;
|
|
7047
6875
|
LaunchOnQuestStart: boolean;
|
|
7048
|
-
|
|
7049
|
-
NodeType: "EQuestNodeType::OnAbilityUsedEvent" & EQuestNodeType;
|
|
7050
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7051
|
-
QuestSID: string;
|
|
7052
|
-
Repeatable: boolean;
|
|
7053
|
-
SID: string;
|
|
6876
|
+
NodeType: "EQuestNodeType::OnAbilityUsedEvent";
|
|
7054
6877
|
TargetQuestGuid: string;
|
|
7055
6878
|
TrackBeforeActive: boolean;
|
|
7056
|
-
}
|
|
7057
|
-
export
|
|
6879
|
+
}
|
|
6880
|
+
export interface QuestNodePrototypeOnDialogStartEvent extends QuestNodePrototype {
|
|
7058
6881
|
DialogToStart: string;
|
|
7059
6882
|
EventType: EQuestEventType;
|
|
7060
6883
|
LaunchOnQuestStart: boolean;
|
|
7061
|
-
|
|
7062
|
-
NodeType: "EQuestNodeType::OnDialogStartEvent" & EQuestNodeType;
|
|
7063
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7064
|
-
QuestSID: string;
|
|
7065
|
-
SID: string;
|
|
6884
|
+
NodeType: "EQuestNodeType::OnDialogStartEvent";
|
|
7066
6885
|
TargetQuestGuid: string;
|
|
7067
6886
|
TrackBeforeActive: boolean;
|
|
7068
|
-
}
|
|
7069
|
-
export
|
|
6887
|
+
}
|
|
6888
|
+
export interface QuestNodePrototypeOnEmissionFinishEvent extends QuestNodePrototype {
|
|
7070
6889
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7071
6890
|
EventType: EQuestEventType;
|
|
7072
6891
|
LaunchOnQuestStart: boolean;
|
|
7073
|
-
|
|
7074
|
-
NodeType: "EQuestNodeType::OnEmissionFinishEvent" & EQuestNodeType;
|
|
7075
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7076
|
-
QuestSID: string;
|
|
7077
|
-
Repeatable: boolean;
|
|
7078
|
-
SID: string;
|
|
6892
|
+
NodeType: "EQuestNodeType::OnEmissionFinishEvent";
|
|
7079
6893
|
TrackBeforeActive: boolean;
|
|
7080
|
-
}
|
|
7081
|
-
export
|
|
6894
|
+
}
|
|
6895
|
+
export interface QuestNodePrototypeOnEmissionStageActivated extends QuestNodePrototype {
|
|
7082
6896
|
EventType: EQuestEventType;
|
|
7083
6897
|
LaunchOnQuestStart: boolean;
|
|
7084
|
-
|
|
7085
|
-
NodeType: "EQuestNodeType::OnEmissionStageActivated" & EQuestNodeType;
|
|
7086
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7087
|
-
QuestSID: string;
|
|
7088
|
-
Repeatable: boolean;
|
|
7089
|
-
SID: string;
|
|
6898
|
+
NodeType: "EQuestNodeType::OnEmissionStageActivated";
|
|
7090
6899
|
StageID: EEmissionStage;
|
|
7091
6900
|
TrackBeforeActive: boolean;
|
|
7092
|
-
}
|
|
7093
|
-
export
|
|
6901
|
+
}
|
|
6902
|
+
export interface QuestNodePrototypeOnEmissionStageFinished extends QuestNodePrototype {
|
|
7094
6903
|
EventType: EQuestEventType;
|
|
7095
6904
|
LaunchOnQuestStart: boolean;
|
|
7096
|
-
|
|
7097
|
-
NodeType: "EQuestNodeType::OnEmissionStageFinished" & EQuestNodeType;
|
|
7098
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7099
|
-
QuestSID: string;
|
|
7100
|
-
Repeatable: boolean;
|
|
7101
|
-
SID: string;
|
|
6905
|
+
NodeType: "EQuestNodeType::OnEmissionStageFinished";
|
|
7102
6906
|
StageID: EEmissionStage;
|
|
7103
6907
|
TrackBeforeActive: boolean;
|
|
7104
|
-
}
|
|
7105
|
-
export
|
|
6908
|
+
}
|
|
6909
|
+
export interface QuestNodePrototypeOnEmissionStartEvent extends QuestNodePrototype {
|
|
7106
6910
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7107
6911
|
EventType: EQuestEventType;
|
|
7108
6912
|
LaunchOnQuestStart: boolean;
|
|
7109
|
-
|
|
7110
|
-
NodeType: "EQuestNodeType::OnEmissionStartEvent" & EQuestNodeType;
|
|
7111
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7112
|
-
QuestSID: string;
|
|
7113
|
-
Repeatable: boolean;
|
|
7114
|
-
SID: string;
|
|
6913
|
+
NodeType: "EQuestNodeType::OnEmissionStartEvent";
|
|
7115
6914
|
TrackBeforeActive: boolean;
|
|
7116
|
-
}
|
|
7117
|
-
export
|
|
6915
|
+
}
|
|
6916
|
+
export interface QuestNodePrototypeOnFactionBecomeEnemyEvent extends QuestNodePrototype {
|
|
7118
6917
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7119
6918
|
EventType: EQuestEventType;
|
|
7120
6919
|
Faction: string;
|
|
7121
6920
|
LaunchOnQuestStart: boolean;
|
|
7122
|
-
|
|
7123
|
-
NodeType: "EQuestNodeType::OnFactionBecomeEnemyEvent" & EQuestNodeType;
|
|
7124
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7125
|
-
QuestSID: string;
|
|
7126
|
-
Repeatable: boolean;
|
|
7127
|
-
SID: string;
|
|
6921
|
+
NodeType: "EQuestNodeType::OnFactionBecomeEnemyEvent";
|
|
7128
6922
|
TrackBeforeActive: boolean;
|
|
7129
|
-
}
|
|
7130
|
-
export
|
|
6923
|
+
}
|
|
6924
|
+
export interface QuestNodePrototypeOnFactionBecomeFriendEvent extends QuestNodePrototype {
|
|
7131
6925
|
EventType: EQuestEventType;
|
|
7132
6926
|
Faction: string;
|
|
7133
6927
|
LaunchOnQuestStart: boolean;
|
|
7134
|
-
|
|
7135
|
-
NodeType: "EQuestNodeType::OnFactionBecomeFriendEvent" & EQuestNodeType;
|
|
7136
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7137
|
-
QuestSID: string;
|
|
7138
|
-
SID: string;
|
|
6928
|
+
NodeType: "EQuestNodeType::OnFactionBecomeFriendEvent";
|
|
7139
6929
|
TrackBeforeActive: boolean;
|
|
7140
|
-
}
|
|
7141
|
-
export
|
|
6930
|
+
}
|
|
6931
|
+
export interface QuestNodePrototypeOnGetCompatibleAttachEvent extends QuestNodePrototype {
|
|
7142
6932
|
EventType: EQuestEventType;
|
|
7143
6933
|
LaunchOnQuestStart: boolean;
|
|
7144
|
-
|
|
7145
|
-
NodeType: "EQuestNodeType::OnGetCompatibleAttachEvent" & EQuestNodeType;
|
|
7146
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7147
|
-
QuestSID: string;
|
|
7148
|
-
SID: string;
|
|
6934
|
+
NodeType: "EQuestNodeType::OnGetCompatibleAttachEvent";
|
|
7149
6935
|
TrackBeforeActive: boolean;
|
|
7150
|
-
}
|
|
7151
|
-
export
|
|
6936
|
+
}
|
|
6937
|
+
export interface QuestNodePrototypeOnHitEvent extends QuestNodePrototype {
|
|
7152
6938
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7153
6939
|
EventType: EQuestEventType;
|
|
7154
6940
|
HitProducer: string;
|
|
7155
6941
|
HitReceiver: string;
|
|
7156
6942
|
LaunchOnQuestStart: boolean;
|
|
7157
|
-
|
|
7158
|
-
NodeType: "EQuestNodeType::OnHitEvent" & EQuestNodeType;
|
|
7159
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7160
|
-
QuestSID: string;
|
|
7161
|
-
Repeatable: boolean;
|
|
7162
|
-
SID: string;
|
|
6943
|
+
NodeType: "EQuestNodeType::OnHitEvent";
|
|
7163
6944
|
TrackBeforeActive: boolean;
|
|
7164
|
-
}
|
|
7165
|
-
export
|
|
6945
|
+
}
|
|
6946
|
+
export interface QuestNodePrototypeOnInfotopicFinishEvent extends QuestNodePrototype {
|
|
7166
6947
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7167
6948
|
EventType: EQuestEventType;
|
|
7168
6949
|
InfotopicLastPhrases: QuestNodePrototypeInfotopicLastPhrases;
|
|
7169
6950
|
LaunchOnQuestStart: boolean;
|
|
7170
|
-
|
|
7171
|
-
NodeType: "EQuestNodeType::OnInfotopicFinishEvent" & EQuestNodeType;
|
|
7172
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7173
|
-
QuestSID: string;
|
|
7174
|
-
SID: string;
|
|
6951
|
+
NodeType: "EQuestNodeType::OnInfotopicFinishEvent";
|
|
7175
6952
|
TrackBeforeActive: boolean;
|
|
7176
|
-
}
|
|
7177
|
-
export
|
|
6953
|
+
}
|
|
6954
|
+
export interface QuestNodePrototypeOnInteractEvent extends QuestNodePrototype {
|
|
7178
6955
|
EventType: EQuestEventType;
|
|
7179
6956
|
InteractableQuestGuid: string;
|
|
7180
6957
|
LaunchOnQuestStart: boolean;
|
|
7181
|
-
|
|
7182
|
-
NodeType: "EQuestNodeType::OnInteractEvent" & EQuestNodeType;
|
|
7183
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7184
|
-
QuestSID: string;
|
|
7185
|
-
Repeatable: boolean;
|
|
7186
|
-
SID: string;
|
|
6958
|
+
NodeType: "EQuestNodeType::OnInteractEvent";
|
|
7187
6959
|
TrackBeforeActive: boolean;
|
|
7188
|
-
}
|
|
7189
|
-
export
|
|
6960
|
+
}
|
|
6961
|
+
export interface QuestNodePrototypeOnJournalQuestEvent extends QuestNodePrototype {
|
|
7190
6962
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7191
6963
|
EventType: EQuestEventType;
|
|
7192
6964
|
JournalQuestSID: string;
|
|
7193
6965
|
JournalQuestStageSID: string;
|
|
7194
6966
|
LaunchOnQuestStart: boolean;
|
|
7195
|
-
|
|
7196
|
-
NodeType: "EQuestNodeType::OnJournalQuestEvent" & EQuestNodeType;
|
|
7197
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7198
|
-
QuestSID: string;
|
|
7199
|
-
Repeatable: boolean;
|
|
7200
|
-
SID: string;
|
|
6967
|
+
NodeType: "EQuestNodeType::OnJournalQuestEvent";
|
|
7201
6968
|
TrackBeforeActive: boolean;
|
|
7202
|
-
}
|
|
7203
|
-
export
|
|
6969
|
+
}
|
|
6970
|
+
export interface QuestNodePrototypeOnKillerCheckEvent extends QuestNodePrototype {
|
|
7204
6971
|
EventType: EQuestEventType;
|
|
7205
6972
|
FullSquad: boolean;
|
|
7206
6973
|
IncludeWoundedEvent: boolean;
|
|
7207
6974
|
LaunchOnQuestStart: boolean;
|
|
7208
|
-
|
|
7209
|
-
NodeType: "EQuestNodeType::OnKillerCheckEvent" & EQuestNodeType;
|
|
7210
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7211
|
-
QuestSID: string;
|
|
6975
|
+
NodeType: "EQuestNodeType::OnKillerCheckEvent";
|
|
7212
6976
|
ShouldBeKilled: string;
|
|
7213
|
-
SID: string;
|
|
7214
6977
|
TargetQuestGuid: string;
|
|
7215
6978
|
TrackBeforeActive: boolean;
|
|
7216
|
-
}
|
|
7217
|
-
export
|
|
6979
|
+
}
|
|
6980
|
+
export interface QuestNodePrototypeOnMoneyAmountReachedEvent extends QuestNodePrototype {
|
|
7218
6981
|
EventType: EQuestEventType;
|
|
7219
6982
|
LaunchOnQuestStart: boolean;
|
|
7220
|
-
|
|
7221
|
-
NodeType: "EQuestNodeType::OnMoneyAmountReachedEvent" & EQuestNodeType;
|
|
7222
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7223
|
-
QuestSID: string;
|
|
7224
|
-
SID: string;
|
|
6983
|
+
NodeType: "EQuestNodeType::OnMoneyAmountReachedEvent";
|
|
7225
6984
|
TargetMoneyAmount: number;
|
|
7226
6985
|
TrackBeforeActive: boolean;
|
|
7227
|
-
}
|
|
7228
|
-
export
|
|
6986
|
+
}
|
|
6987
|
+
export interface QuestNodePrototypeOnNPCBecomeEnemyEvent extends QuestNodePrototype {
|
|
7229
6988
|
EventType: EQuestEventType;
|
|
7230
6989
|
LaunchOnQuestStart: boolean;
|
|
7231
|
-
|
|
7232
|
-
NodeType: "EQuestNodeType::OnNPCBecomeEnemyEvent" & EQuestNodeType;
|
|
7233
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7234
|
-
QuestSID: string;
|
|
7235
|
-
Repeatable: boolean;
|
|
7236
|
-
SID: string;
|
|
6990
|
+
NodeType: "EQuestNodeType::OnNPCBecomeEnemyEvent";
|
|
7237
6991
|
TargetQuestGuid: string;
|
|
7238
6992
|
TrackBeforeActive: boolean;
|
|
7239
|
-
}
|
|
7240
|
-
export
|
|
6993
|
+
}
|
|
6994
|
+
export interface QuestNodePrototypeOnNPCBecomeFriendEvent extends QuestNodePrototype {
|
|
7241
6995
|
EventType: EQuestEventType;
|
|
7242
6996
|
LaunchOnQuestStart: boolean;
|
|
7243
|
-
|
|
7244
|
-
NodeType: "EQuestNodeType::OnNPCBecomeFriendEvent" & EQuestNodeType;
|
|
7245
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7246
|
-
QuestSID: string;
|
|
7247
|
-
Repeatable: boolean;
|
|
7248
|
-
SID: string;
|
|
6997
|
+
NodeType: "EQuestNodeType::OnNPCBecomeFriendEvent";
|
|
7249
6998
|
TargetQuestGuid: string;
|
|
7250
6999
|
TrackBeforeActive: boolean;
|
|
7251
|
-
}
|
|
7252
|
-
export
|
|
7000
|
+
}
|
|
7001
|
+
export interface QuestNodePrototypeOnNPCCreateEvent extends QuestNodePrototype {
|
|
7253
7002
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7254
7003
|
EventType: EQuestEventType;
|
|
7255
7004
|
LaunchOnQuestStart: boolean;
|
|
7256
|
-
|
|
7257
|
-
NodeType: "EQuestNodeType::OnNPCCreateEvent" & EQuestNodeType;
|
|
7258
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7259
|
-
QuestSID: string;
|
|
7260
|
-
SID: string;
|
|
7005
|
+
NodeType: "EQuestNodeType::OnNPCCreateEvent";
|
|
7261
7006
|
TargetQuestGuid: string;
|
|
7262
7007
|
TrackBeforeActive: boolean;
|
|
7263
|
-
}
|
|
7264
|
-
export
|
|
7008
|
+
}
|
|
7009
|
+
export interface QuestNodePrototypeOnNPCDeathEvent extends QuestNodePrototype {
|
|
7265
7010
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7266
7011
|
EventType: EQuestEventType;
|
|
7267
7012
|
LaunchOnQuestStart: boolean;
|
|
7268
|
-
|
|
7269
|
-
NodeType: "EQuestNodeType::OnNPCDeathEvent" & EQuestNodeType;
|
|
7270
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7271
|
-
QuestSID: string;
|
|
7272
|
-
Repeatable: boolean;
|
|
7273
|
-
SID: string;
|
|
7013
|
+
NodeType: "EQuestNodeType::OnNPCDeathEvent";
|
|
7274
7014
|
TargetQuestGuid: string;
|
|
7275
7015
|
TrackBeforeActive: boolean;
|
|
7276
|
-
}
|
|
7277
|
-
export
|
|
7016
|
+
}
|
|
7017
|
+
export interface QuestNodePrototypeOnNPCDefeatEvent extends QuestNodePrototype {
|
|
7278
7018
|
EventType: EQuestEventType;
|
|
7279
7019
|
LaunchOnQuestStart: boolean;
|
|
7280
|
-
|
|
7281
|
-
NodeType: "EQuestNodeType::OnNPCDefeatEvent" & EQuestNodeType;
|
|
7282
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7283
|
-
QuestSID: string;
|
|
7284
|
-
SID: string;
|
|
7020
|
+
NodeType: "EQuestNodeType::OnNPCDefeatEvent";
|
|
7285
7021
|
TargetQuestGuid: string;
|
|
7286
7022
|
TrackBeforeActive: boolean;
|
|
7287
|
-
}
|
|
7288
|
-
export
|
|
7023
|
+
}
|
|
7024
|
+
export interface QuestNodePrototypeOnPlayerGetItemEvent extends QuestNodePrototype {
|
|
7289
7025
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7290
7026
|
EventType: EQuestEventType;
|
|
7291
7027
|
ExpectedItemsCount: number;
|
|
7292
7028
|
ItemPrototypeSID: string;
|
|
7293
7029
|
LaunchOnQuestStart: boolean;
|
|
7294
|
-
|
|
7295
|
-
NodeType: "EQuestNodeType::OnPlayerGetItemEvent" & EQuestNodeType;
|
|
7296
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7297
|
-
QuestSID: string;
|
|
7298
|
-
Repeatable: boolean;
|
|
7299
|
-
SID: string;
|
|
7030
|
+
NodeType: "EQuestNodeType::OnPlayerGetItemEvent";
|
|
7300
7031
|
TrackBeforeActive: boolean;
|
|
7301
7032
|
WithEquipped: boolean;
|
|
7302
7033
|
WithInventory: boolean;
|
|
7303
|
-
}
|
|
7304
|
-
export
|
|
7034
|
+
}
|
|
7035
|
+
export interface QuestNodePrototypeOnPlayerLostItemEvent extends QuestNodePrototype {
|
|
7305
7036
|
EventType: EQuestEventType;
|
|
7306
7037
|
ExpectedItemsCount: number;
|
|
7307
7038
|
FullAmount: boolean;
|
|
7308
7039
|
ItemPrototypeSID: string;
|
|
7309
7040
|
LaunchOnQuestStart: boolean;
|
|
7310
|
-
|
|
7311
|
-
NodeType: "EQuestNodeType::OnPlayerLostItemEvent" & EQuestNodeType;
|
|
7312
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7313
|
-
QuestSID: string;
|
|
7314
|
-
Repeatable: boolean;
|
|
7315
|
-
SID: string;
|
|
7041
|
+
NodeType: "EQuestNodeType::OnPlayerLostItemEvent";
|
|
7316
7042
|
TrackBeforeActive: boolean;
|
|
7317
|
-
}
|
|
7318
|
-
export
|
|
7043
|
+
}
|
|
7044
|
+
export interface QuestNodePrototypeOnPlayerNoticedEvent extends QuestNodePrototype {
|
|
7319
7045
|
AIThreatState: number;
|
|
7320
7046
|
EventType: EQuestEventType;
|
|
7321
7047
|
LaunchOnQuestStart: number;
|
|
7322
|
-
|
|
7323
|
-
NodeType: "EQuestNodeType::OnPlayerNoticedEvent" & EQuestNodeType;
|
|
7324
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7325
|
-
QuestSID: string;
|
|
7326
|
-
Repeatable: boolean;
|
|
7327
|
-
SID: string;
|
|
7048
|
+
NodeType: "EQuestNodeType::OnPlayerNoticedEvent";
|
|
7328
7049
|
TargetQuestGuid: string;
|
|
7329
7050
|
ThreatSensor: number;
|
|
7330
7051
|
TrackBeforeActive: number;
|
|
7331
|
-
}
|
|
7332
|
-
export
|
|
7052
|
+
}
|
|
7053
|
+
export interface QuestNodePrototypeOnPlayerRankReachedEvent extends QuestNodePrototype {
|
|
7333
7054
|
EventType: EQuestEventType;
|
|
7334
7055
|
LaunchOnQuestStart: boolean;
|
|
7335
|
-
|
|
7336
|
-
NodeType: "EQuestNodeType::OnPlayerRankReachedEvent" & EQuestNodeType;
|
|
7337
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7338
|
-
QuestSID: string;
|
|
7339
|
-
SID: string;
|
|
7056
|
+
NodeType: "EQuestNodeType::OnPlayerRankReachedEvent";
|
|
7340
7057
|
TargetRank: ERank;
|
|
7341
7058
|
TrackBeforeActive: boolean;
|
|
7342
|
-
}
|
|
7343
|
-
export
|
|
7059
|
+
}
|
|
7060
|
+
export interface QuestNodePrototypeOnSignalReceived extends QuestNodePrototype {
|
|
7344
7061
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7345
7062
|
EventType: EQuestEventType;
|
|
7346
7063
|
LaunchOnQuestStart: boolean;
|
|
7347
|
-
|
|
7348
|
-
NodeType: "EQuestNodeType::OnSignalReceived" & EQuestNodeType;
|
|
7349
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7350
|
-
QuestSID: string;
|
|
7351
|
-
Repeatable: boolean;
|
|
7352
|
-
SID: string;
|
|
7064
|
+
NodeType: "EQuestNodeType::OnSignalReceived";
|
|
7353
7065
|
SignalSenderGuid: string;
|
|
7354
7066
|
TrackBeforeActive: boolean;
|
|
7355
|
-
}
|
|
7356
|
-
export
|
|
7067
|
+
}
|
|
7068
|
+
export interface QuestNodePrototypeOnTickEvent extends QuestNodePrototype {
|
|
7357
7069
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7358
7070
|
EventType: EQuestEventType;
|
|
7359
7071
|
LaunchOnQuestStart: boolean;
|
|
7360
|
-
|
|
7361
|
-
NodeType: "EQuestNodeType::OnTickEvent" & EQuestNodeType;
|
|
7362
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7363
|
-
QuestSID: string;
|
|
7364
|
-
SID: string;
|
|
7072
|
+
NodeType: "EQuestNodeType::OnTickEvent";
|
|
7365
7073
|
TrackBeforeActive: boolean;
|
|
7366
|
-
}
|
|
7367
|
-
export
|
|
7074
|
+
}
|
|
7075
|
+
export interface QuestNodePrototypeOnUpgradeInstallEvent extends QuestNodePrototype {
|
|
7368
7076
|
EventType: EQuestEventType;
|
|
7369
7077
|
LaunchOnQuestStart: boolean;
|
|
7370
|
-
|
|
7371
|
-
NodeType: "EQuestNodeType::OnUpgradeInstallEvent" & EQuestNodeType;
|
|
7372
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7373
|
-
QuestSID: string;
|
|
7374
|
-
SID: string;
|
|
7078
|
+
NodeType: "EQuestNodeType::OnUpgradeInstallEvent";
|
|
7375
7079
|
TrackBeforeActive: boolean;
|
|
7376
7080
|
UpgradePrototypeSID: string;
|
|
7377
|
-
}
|
|
7081
|
+
}
|
|
7378
7082
|
export type QuestNodePrototypeOutputPinNames = GetStructType<(number | string)[]>;
|
|
7379
7083
|
export type QuestNodePrototypeParams = GetStructType<QuestNodePrototypeParamsItem[]>;
|
|
7380
7084
|
export type QuestNodePrototypeParamsItem = GetStructType<{
|
|
@@ -7386,98 +7090,61 @@ export type QuestNodePrototypeParamsItem = GetStructType<{
|
|
|
7386
7090
|
}>;
|
|
7387
7091
|
export type QuestNodePrototypePersonalRestriction = GetStructType<Record<SID, ESpaceRestrictionType>>;
|
|
7388
7092
|
export type QuestNodePrototypePinWeights = GetStructType<number[]>;
|
|
7389
|
-
export
|
|
7093
|
+
export interface QuestNodePrototypePlayEffect extends QuestNodePrototype {
|
|
7390
7094
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7391
7095
|
EffectLocation: AIGlobalRelativeLocation;
|
|
7392
7096
|
EffectPath: string;
|
|
7393
|
-
|
|
7394
|
-
NodePrototypeVersion: number;
|
|
7395
|
-
NodeType: "EQuestNodeType::PlayEffect" & EQuestNodeType;
|
|
7396
|
-
QuestSID: string;
|
|
7397
|
-
Repeatable: boolean;
|
|
7398
|
-
SID: string;
|
|
7097
|
+
NodeType: "EQuestNodeType::PlayEffect";
|
|
7399
7098
|
TargetQuestGuid: string;
|
|
7400
|
-
}
|
|
7401
|
-
export
|
|
7402
|
-
|
|
7403
|
-
NodePrototypeVersion: number;
|
|
7404
|
-
NodeType: "EQuestNodeType::PlayPostProcess" & EQuestNodeType;
|
|
7099
|
+
}
|
|
7100
|
+
export interface QuestNodePrototypePlayPostProcess extends QuestNodePrototype {
|
|
7101
|
+
NodeType: "EQuestNodeType::PlayPostProcess";
|
|
7405
7102
|
PostEffectProcessorSID: string;
|
|
7406
7103
|
PostProcessParamValue: number;
|
|
7407
|
-
|
|
7408
|
-
|
|
7409
|
-
SID: string;
|
|
7410
|
-
}>;
|
|
7411
|
-
export type QuestNodePrototypePlaySound = GetStructType<{
|
|
7104
|
+
}
|
|
7105
|
+
export interface QuestNodePrototypePlaySound extends QuestNodePrototype {
|
|
7412
7106
|
AKEventPath: string;
|
|
7413
7107
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7414
7108
|
FinishOnAKEvent: boolean;
|
|
7415
|
-
Launchers: string;
|
|
7416
7109
|
MasterAKEventForLoad: string;
|
|
7417
|
-
|
|
7418
|
-
NodeType: "EQuestNodeType::PlaySound" & EQuestNodeType;
|
|
7419
|
-
QuestSID: string;
|
|
7420
|
-
Repeatable: boolean;
|
|
7421
|
-
SID: string;
|
|
7110
|
+
NodeType: "EQuestNodeType::PlaySound";
|
|
7422
7111
|
SoundLocation: AIGlobalRelativeLocation;
|
|
7423
7112
|
SoundPath: string;
|
|
7424
|
-
}
|
|
7425
|
-
export
|
|
7113
|
+
}
|
|
7114
|
+
export interface QuestNodePrototypePlayVideo extends QuestNodePrototype {
|
|
7426
7115
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7427
7116
|
IsFinalVideo: boolean;
|
|
7428
|
-
|
|
7429
|
-
NodePrototypeVersion: number;
|
|
7430
|
-
NodeType: "EQuestNodeType::PlayVideo" & EQuestNodeType;
|
|
7431
|
-
QuestSID: string;
|
|
7432
|
-
SID: string;
|
|
7117
|
+
NodeType: "EQuestNodeType::PlayVideo";
|
|
7433
7118
|
TimeToStartNextNodeBeforeEnd: number;
|
|
7434
7119
|
VideoAssetPath: string;
|
|
7435
|
-
}
|
|
7436
|
-
export
|
|
7437
|
-
|
|
7438
|
-
NodePrototypeVersion: number;
|
|
7439
|
-
NodeType: "EQuestNodeType::ProtectLairNPCSquadItem" & EQuestNodeType;
|
|
7440
|
-
QuestSID: string;
|
|
7441
|
-
SID: string;
|
|
7120
|
+
}
|
|
7121
|
+
export interface QuestNodePrototypeProtectLairNPCSquadItem extends QuestNodePrototype {
|
|
7122
|
+
NodeType: "EQuestNodeType::ProtectLairNPCSquadItem";
|
|
7442
7123
|
TargetQuestGuid: string;
|
|
7443
|
-
}
|
|
7444
|
-
export
|
|
7445
|
-
|
|
7446
|
-
NodePrototypeVersion: number;
|
|
7447
|
-
NodeType: "EQuestNodeType::Random" & EQuestNodeType;
|
|
7124
|
+
}
|
|
7125
|
+
export interface QuestNodePrototypeRandom extends QuestNodePrototype {
|
|
7126
|
+
NodeType: "EQuestNodeType::Random";
|
|
7448
7127
|
OutputPinNames: QuestNodePrototypeOutputPinNames;
|
|
7449
7128
|
PinWeights: QuestNodePrototypePinWeights;
|
|
7450
|
-
|
|
7451
|
-
Repeatable: boolean;
|
|
7452
|
-
SID: string;
|
|
7453
|
-
}>;
|
|
7129
|
+
}
|
|
7454
7130
|
export type QuestNodePrototypeReachPointComments = GetStructType<QuestNodePrototypeReachPointCommentsItem[]>;
|
|
7455
7131
|
export type QuestNodePrototypeReachPointCommentsItem = GetStructType<{
|
|
7456
7132
|
DialogMembers: ObjPrototypeCapsuleNames;
|
|
7457
7133
|
ReachPointComment: string;
|
|
7458
7134
|
ReachPointLocation: AIGlobalRelativeLocation;
|
|
7459
7135
|
}>;
|
|
7460
|
-
export
|
|
7136
|
+
export interface QuestNodePrototypeReputationLocker extends QuestNodePrototype {
|
|
7461
7137
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7462
|
-
Launchers: string;
|
|
7463
7138
|
MinimalReputationLevel: ERelationLevel;
|
|
7464
|
-
|
|
7465
|
-
NodeType: "EQuestNodeType::ReputationLocker" & EQuestNodeType;
|
|
7466
|
-
QuestSID: string;
|
|
7467
|
-
SID: string;
|
|
7139
|
+
NodeType: "EQuestNodeType::ReputationLocker";
|
|
7468
7140
|
TargetFaction: string;
|
|
7469
7141
|
TargetQuestGuid: string;
|
|
7470
|
-
}
|
|
7471
|
-
export
|
|
7142
|
+
}
|
|
7143
|
+
export interface QuestNodePrototypeResetAI extends QuestNodePrototype {
|
|
7472
7144
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7473
|
-
|
|
7474
|
-
NodePrototypeVersion: number;
|
|
7475
|
-
NodeType: "EQuestNodeType::ResetAI" & EQuestNodeType;
|
|
7476
|
-
QuestSID: string;
|
|
7477
|
-
Repeatable: boolean;
|
|
7478
|
-
SID: string;
|
|
7145
|
+
NodeType: "EQuestNodeType::ResetAI";
|
|
7479
7146
|
TargetQuestGuid: string;
|
|
7480
|
-
}
|
|
7147
|
+
}
|
|
7481
7148
|
export type QuestNodePrototypeRestrictedFaction = GetStructType<{
|
|
7482
7149
|
Bandits: ESpaceRestrictionType;
|
|
7483
7150
|
FreeStalkers: ESpaceRestrictionType;
|
|
@@ -7486,24 +7153,17 @@ export type QuestNodePrototypeRestrictedFaction = GetStructType<{
|
|
|
7486
7153
|
Mutant: ESpaceRestrictionType;
|
|
7487
7154
|
Varta: ESpaceRestrictionType;
|
|
7488
7155
|
}>;
|
|
7489
|
-
export
|
|
7156
|
+
export interface QuestNodePrototypeRestrictionArea extends QuestNodePrototype {
|
|
7490
7157
|
IgnoreDamageType: EIgnoreDamageType;
|
|
7491
|
-
|
|
7492
|
-
NodeType: "EQuestNodeType::RestrictionArea" & EQuestNodeType;
|
|
7493
|
-
QuestSID: string;
|
|
7494
|
-
SID: string;
|
|
7158
|
+
NodeType: "EQuestNodeType::RestrictionArea";
|
|
7495
7159
|
SpawnHidden: boolean;
|
|
7496
7160
|
SpawnNodeExcludeType: ESpawnNodeExcludeType;
|
|
7497
7161
|
TargetQuestGuid: string;
|
|
7498
|
-
}
|
|
7499
|
-
export
|
|
7500
|
-
|
|
7501
|
-
NodePrototypeVersion: number;
|
|
7502
|
-
NodeType: "EQuestNodeType::RestrictSave" & EQuestNodeType;
|
|
7503
|
-
QuestSID: string;
|
|
7162
|
+
}
|
|
7163
|
+
export interface QuestNodePrototypeRestrictSave extends QuestNodePrototype {
|
|
7164
|
+
NodeType: "EQuestNodeType::RestrictSave";
|
|
7504
7165
|
SaveTypes: QuestNodePrototypeSaveTypes;
|
|
7505
|
-
|
|
7506
|
-
}>;
|
|
7166
|
+
}
|
|
7507
7167
|
export type QuestNodePrototypeRotationAfterMoveTo = GetStructType<{
|
|
7508
7168
|
Pitch: number;
|
|
7509
7169
|
Roll: number;
|
|
@@ -7512,65 +7172,41 @@ export type QuestNodePrototypeRotationAfterMoveTo = GetStructType<{
|
|
|
7512
7172
|
Yaw: number;
|
|
7513
7173
|
Z: number;
|
|
7514
7174
|
}>;
|
|
7515
|
-
export
|
|
7516
|
-
|
|
7517
|
-
|
|
7518
|
-
NodeType: "EQuestNodeType::SaveGame" & EQuestNodeType;
|
|
7519
|
-
QuestSID: string;
|
|
7520
|
-
Repeatable: boolean;
|
|
7521
|
-
SID: string;
|
|
7522
|
-
}>;
|
|
7175
|
+
export interface QuestNodePrototypeSaveGame extends QuestNodePrototype {
|
|
7176
|
+
NodeType: "EQuestNodeType::SaveGame";
|
|
7177
|
+
}
|
|
7523
7178
|
export type QuestNodePrototypeSaveTypes = GetStructType<ESaveType[]>;
|
|
7524
|
-
export
|
|
7179
|
+
export interface QuestNodePrototypeScheduledContainer extends QuestNodePrototype {
|
|
7525
7180
|
ContaineredQuestPrototypeSID: string;
|
|
7526
7181
|
EndHour: number;
|
|
7527
|
-
|
|
7528
|
-
NodePrototypeVersion: number;
|
|
7529
|
-
NodeType: "EQuestNodeType::ScheduledContainer" & EQuestNodeType;
|
|
7182
|
+
NodeType: "EQuestNodeType::ScheduledContainer";
|
|
7530
7183
|
OutputPinNames: QuestNodePrototypeOutputPinNames;
|
|
7531
|
-
QuestSID: string;
|
|
7532
|
-
Repeatable: boolean;
|
|
7533
7184
|
SelectedDaysOfWeek: number;
|
|
7534
|
-
SID: string;
|
|
7535
7185
|
StartHour: number;
|
|
7536
|
-
}
|
|
7537
|
-
export
|
|
7538
|
-
|
|
7539
|
-
NodePrototypeVersion: number;
|
|
7540
|
-
NodeType: "EQuestNodeType::SearchPoint" & EQuestNodeType;
|
|
7541
|
-
QuestSID: string;
|
|
7542
|
-
SID: string;
|
|
7186
|
+
}
|
|
7187
|
+
export interface QuestNodePrototypeSearchPoint extends QuestNodePrototype {
|
|
7188
|
+
NodeType: "EQuestNodeType::SearchPoint";
|
|
7543
7189
|
TargetLocation: AIGlobalRelativeLocation;
|
|
7544
7190
|
TargetQuestGuid: string;
|
|
7545
|
-
}
|
|
7546
|
-
export
|
|
7191
|
+
}
|
|
7192
|
+
export interface QuestNodePrototypeSendSignal extends QuestNodePrototype {
|
|
7547
7193
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7548
|
-
|
|
7549
|
-
NodePrototypeVersion: number;
|
|
7550
|
-
NodeType: "EQuestNodeType::SendSignal" & EQuestNodeType;
|
|
7551
|
-
QuestSID: string;
|
|
7552
|
-
Repeatable: boolean;
|
|
7553
|
-
SID: string;
|
|
7194
|
+
NodeType: "EQuestNodeType::SendSignal";
|
|
7554
7195
|
SignalReceiverGuid: string;
|
|
7555
|
-
}
|
|
7556
|
-
export
|
|
7196
|
+
}
|
|
7197
|
+
export interface QuestNodePrototypeSequenceStart extends QuestNodePrototype {
|
|
7557
7198
|
BlendExpForEaseInOut: number;
|
|
7558
7199
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7559
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7560
7200
|
LocalizedSequences: DialogPrototypeLocalizedSequences;
|
|
7561
7201
|
LoopSequence: number;
|
|
7562
|
-
|
|
7563
|
-
NodeType: "EQuestNodeType::SequenceStart" & EQuestNodeType;
|
|
7202
|
+
NodeType: "EQuestNodeType::SequenceStart";
|
|
7564
7203
|
PreblendSequence: boolean;
|
|
7565
7204
|
PreblendTime: number;
|
|
7566
|
-
QuestSID: string;
|
|
7567
|
-
Repeatable: boolean;
|
|
7568
7205
|
RotationTime: number;
|
|
7569
7206
|
SelfLocation: string;
|
|
7570
|
-
SID: string;
|
|
7571
7207
|
TargetLocation: string;
|
|
7572
|
-
}
|
|
7573
|
-
export
|
|
7208
|
+
}
|
|
7209
|
+
export interface QuestNodePrototypeSetAIBehavior extends QuestNodePrototype {
|
|
7574
7210
|
BehaviorType: EBehaviorType;
|
|
7575
7211
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7576
7212
|
CanBeInterrupted: boolean;
|
|
@@ -7607,7 +7243,6 @@ export type QuestNodePrototypeSetAIBehavior = GetStructType<{
|
|
|
7607
7243
|
IgnoreRadiationFeilds: boolean;
|
|
7608
7244
|
IgnoreThreat: boolean;
|
|
7609
7245
|
ImmediatelyIdentifyEnemy: boolean;
|
|
7610
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7611
7246
|
LeaveAnomalyZoneComments: string;
|
|
7612
7247
|
LookAt: QuestNodePrototypeLookAt;
|
|
7613
7248
|
MaxAcceptanceDistance: number;
|
|
@@ -7620,26 +7255,22 @@ export type QuestNodePrototypeSetAIBehavior = GetStructType<{
|
|
|
7620
7255
|
MoveToPath: string;
|
|
7621
7256
|
MoveToPlayer: boolean;
|
|
7622
7257
|
MoveToSuccessRange: number;
|
|
7623
|
-
|
|
7624
|
-
NodeType: "EQuestNodeType::SetAIBehavior" & EQuestNodeType;
|
|
7258
|
+
NodeType: "EQuestNodeType::SetAIBehavior";
|
|
7625
7259
|
PatrolCycleCount: number;
|
|
7626
7260
|
PatrolPlaceholderGUID: string;
|
|
7627
7261
|
PlayerLeavesWhileCombatComments: string;
|
|
7628
7262
|
PlayerLeavesWhileMovingComments: string;
|
|
7629
|
-
QuestSID: string;
|
|
7630
7263
|
Radius: number;
|
|
7631
7264
|
ReachAnomalyZoneComments: string;
|
|
7632
7265
|
ReachPointComments: QuestNodePrototypeReachPointComments;
|
|
7633
7266
|
ReactOnApproachWithWeapon: boolean;
|
|
7634
7267
|
ReactOnNonEnemySounds: boolean;
|
|
7635
|
-
Repeatable: boolean;
|
|
7636
7268
|
RepeatableStayAnimation: boolean;
|
|
7637
7269
|
RestLocation: AIGlobalRelativeLocation;
|
|
7638
7270
|
RotationAfterMoveTo: QuestNodePrototypeRotationAfterMoveTo;
|
|
7639
7271
|
ShootingPosition: AIGlobalRelativeLocation;
|
|
7640
7272
|
ShootTargetLocation: AIGlobalRelativeLocation;
|
|
7641
7273
|
ShotsQueueCount: number;
|
|
7642
|
-
SID: string;
|
|
7643
7274
|
SimulateBattle: boolean;
|
|
7644
7275
|
SleepLocation: AIGlobalRelativeLocation;
|
|
7645
7276
|
StartBattleComments: string;
|
|
@@ -7659,30 +7290,20 @@ export type QuestNodePrototypeSetAIBehavior = GetStructType<{
|
|
|
7659
7290
|
WaitingTime: number;
|
|
7660
7291
|
WeaponReady: boolean;
|
|
7661
7292
|
WeaponState: EWeaponState;
|
|
7662
|
-
}
|
|
7663
|
-
export
|
|
7293
|
+
}
|
|
7294
|
+
export interface QuestNodePrototypeSetCharacterEffect extends QuestNodePrototype {
|
|
7664
7295
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7665
7296
|
EffectPrototypeSID: string;
|
|
7666
|
-
|
|
7667
|
-
NodePrototypeVersion: number;
|
|
7668
|
-
NodeType: "EQuestNodeType::SetCharacterEffect" & EQuestNodeType;
|
|
7669
|
-
QuestSID: string;
|
|
7670
|
-
Repeatable: boolean;
|
|
7671
|
-
SID: string;
|
|
7297
|
+
NodeType: "EQuestNodeType::SetCharacterEffect";
|
|
7672
7298
|
TargetQuestGuid: string;
|
|
7673
|
-
}
|
|
7674
|
-
export
|
|
7299
|
+
}
|
|
7300
|
+
export interface QuestNodePrototypeSetCharacterParam extends QuestNodePrototype {
|
|
7675
7301
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7676
|
-
|
|
7677
|
-
NodePrototypeVersion: number;
|
|
7678
|
-
NodeType: "EQuestNodeType::SetCharacterParam" & EQuestNodeType;
|
|
7302
|
+
NodeType: "EQuestNodeType::SetCharacterParam";
|
|
7679
7303
|
Params: QuestNodePrototypeParams;
|
|
7680
|
-
QuestSID: string;
|
|
7681
|
-
Repeatable: boolean;
|
|
7682
|
-
SID: string;
|
|
7683
7304
|
TargetQuestGuid: string;
|
|
7684
|
-
}
|
|
7685
|
-
export
|
|
7305
|
+
}
|
|
7306
|
+
export interface QuestNodePrototypeSetDialog extends QuestNodePrototype {
|
|
7686
7307
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7687
7308
|
CallPlayer: boolean;
|
|
7688
7309
|
CallPlayerRadius: number;
|
|
@@ -7693,473 +7314,297 @@ export type QuestNodePrototypeSetDialog = GetStructType<{
|
|
|
7693
7314
|
DialogObjectLocation: QuestNodePrototypeDialogObjectLocation;
|
|
7694
7315
|
IsComment: boolean;
|
|
7695
7316
|
LastPhrases: QuestNodePrototypeLastPhrases;
|
|
7696
|
-
|
|
7697
|
-
NodePrototypeVersion: number;
|
|
7698
|
-
NodeType: "EQuestNodeType::SetDialog" & EQuestNodeType;
|
|
7317
|
+
NodeType: "EQuestNodeType::SetDialog";
|
|
7699
7318
|
NPCToStartDialog: number;
|
|
7700
7319
|
OutputPinNames: QuestNodePrototypeOutputPinNames;
|
|
7701
7320
|
OverrideDialogTopic: EOverrideDialogTopic;
|
|
7702
|
-
QuestSID: string;
|
|
7703
|
-
Repeatable: boolean;
|
|
7704
7321
|
SeekPlayer: boolean;
|
|
7705
|
-
SID: string;
|
|
7706
7322
|
StartForcedDialog: boolean;
|
|
7707
7323
|
TalkThroughRadio: QuestNodePrototypeTalkThroughRadio;
|
|
7708
7324
|
WaitAllDialogEndingsToFinish: boolean;
|
|
7709
|
-
}
|
|
7710
|
-
export
|
|
7711
|
-
|
|
7712
|
-
NodePrototypeVersion: number;
|
|
7713
|
-
NodeType: "EQuestNodeType::SetDurabilityParam" & EQuestNodeType;
|
|
7325
|
+
}
|
|
7326
|
+
export interface QuestNodePrototypeSetDurabilityParam extends QuestNodePrototype {
|
|
7327
|
+
NodeType: "EQuestNodeType::SetDurabilityParam";
|
|
7714
7328
|
PistolDurabilityPercent: number;
|
|
7715
7329
|
PrimaryWeaponDurabilityPercent: number;
|
|
7716
|
-
QuestSID: string;
|
|
7717
7330
|
SecondaryWeaponDurabilityPercent: number;
|
|
7718
7331
|
ShouldTargetPistol: boolean;
|
|
7719
7332
|
ShouldTargetPrimaryWeapon: boolean;
|
|
7720
7333
|
ShouldTargetSecondaryWeapon: boolean;
|
|
7721
|
-
SID: string;
|
|
7722
7334
|
TargetQuestGuid: string;
|
|
7723
|
-
}
|
|
7724
|
-
export
|
|
7725
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7335
|
+
}
|
|
7336
|
+
export interface QuestNodePrototypeSetFactionRestriction extends QuestNodePrototype {
|
|
7726
7337
|
NavAreaClass: string;
|
|
7727
|
-
|
|
7728
|
-
NodeType: "EQuestNodeType::SetFactionRestriction" & EQuestNodeType;
|
|
7729
|
-
QuestSID: string;
|
|
7338
|
+
NodeType: "EQuestNodeType::SetFactionRestriction";
|
|
7730
7339
|
RestrictedFaction: QuestNodePrototypeRestrictedFaction;
|
|
7731
|
-
|
|
7732
|
-
|
|
7733
|
-
export type QuestNodePrototypeSetGlobalVariable = GetStructType<{
|
|
7340
|
+
}
|
|
7341
|
+
export interface QuestNodePrototypeSetGlobalVariable extends QuestNodePrototype {
|
|
7734
7342
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7735
7343
|
ChangeValueMode: EChangeValueMode;
|
|
7736
7344
|
GlobalVariablePrototypeSID: string;
|
|
7737
|
-
|
|
7738
|
-
NodePrototypeVersion: number;
|
|
7739
|
-
NodeType: "EQuestNodeType::SetGlobalVariable" & EQuestNodeType;
|
|
7740
|
-
QuestSID: string;
|
|
7741
|
-
Repeatable: boolean;
|
|
7742
|
-
SID: string;
|
|
7345
|
+
NodeType: "EQuestNodeType::SetGlobalVariable";
|
|
7743
7346
|
VariableValue: VariableValue;
|
|
7744
|
-
}
|
|
7745
|
-
export
|
|
7746
|
-
|
|
7747
|
-
NodePrototypeVersion: number;
|
|
7748
|
-
NodeType: "EQuestNodeType::SetHubOwner" & EQuestNodeType;
|
|
7347
|
+
}
|
|
7348
|
+
export interface QuestNodePrototypeSetHubOwner extends QuestNodePrototype {
|
|
7349
|
+
NodeType: "EQuestNodeType::SetHubOwner";
|
|
7749
7350
|
OwnedHub: string;
|
|
7750
|
-
QuestSID: string;
|
|
7751
|
-
SID: string;
|
|
7752
7351
|
TargetQuestGuid: string;
|
|
7753
|
-
}
|
|
7754
|
-
export
|
|
7352
|
+
}
|
|
7353
|
+
export interface QuestNodePrototypeSetItemGenerator extends QuestNodePrototype {
|
|
7755
7354
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7756
7355
|
EquipItems: boolean;
|
|
7757
7356
|
ItemGeneratorSID: string;
|
|
7758
|
-
|
|
7759
|
-
NodePrototypeVersion: number;
|
|
7760
|
-
NodeType: "EQuestNodeType::SetItemGenerator" & EQuestNodeType;
|
|
7761
|
-
QuestSID: string;
|
|
7762
|
-
Repeatable: boolean;
|
|
7357
|
+
NodeType: "EQuestNodeType::SetItemGenerator";
|
|
7763
7358
|
ReplaceInventory: boolean;
|
|
7764
|
-
SID: string;
|
|
7765
7359
|
TargetQuestGuid: string;
|
|
7766
|
-
}
|
|
7767
|
-
export
|
|
7360
|
+
}
|
|
7361
|
+
export interface QuestNodePrototypeSetJournal extends QuestNodePrototype {
|
|
7768
7362
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7769
7363
|
JournalAction: EJournalAction;
|
|
7770
7364
|
JournalEntity: EJournalEntity;
|
|
7771
7365
|
JournalQuestDescriptionIndex: number;
|
|
7772
7366
|
JournalQuestSID: string;
|
|
7773
7367
|
JournalQuestStageSID: string;
|
|
7774
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7775
7368
|
Markers: QuestNodePrototypeMarkers;
|
|
7776
|
-
|
|
7777
|
-
NodeType: "EQuestNodeType::SetJournal" & EQuestNodeType;
|
|
7778
|
-
QuestSID: string;
|
|
7779
|
-
Repeatable: boolean;
|
|
7369
|
+
NodeType: "EQuestNodeType::SetJournal";
|
|
7780
7370
|
SetQuestActive: boolean;
|
|
7781
|
-
|
|
7782
|
-
|
|
7783
|
-
export type QuestNodePrototypeSetLocationName = GetStructType<{
|
|
7784
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7371
|
+
}
|
|
7372
|
+
export interface QuestNodePrototypeSetLocationName extends QuestNodePrototype {
|
|
7785
7373
|
Location: string;
|
|
7786
7374
|
NewDescription: number;
|
|
7787
7375
|
NewTitle: number;
|
|
7788
|
-
|
|
7789
|
-
|
|
7790
|
-
|
|
7791
|
-
SID: string;
|
|
7792
|
-
}>;
|
|
7793
|
-
export type QuestNodePrototypeSetMeshGenerator = GetStructType<{
|
|
7376
|
+
NodeType: "EQuestNodeType::SetLocationName";
|
|
7377
|
+
}
|
|
7378
|
+
export interface QuestNodePrototypeSetMeshGenerator extends QuestNodePrototype {
|
|
7794
7379
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7795
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7796
7380
|
MeshGeneratorSID: string;
|
|
7797
|
-
|
|
7798
|
-
NodeType: "EQuestNodeType::SetMeshGenerator" & EQuestNodeType;
|
|
7799
|
-
QuestSID: string;
|
|
7800
|
-
SID: string;
|
|
7381
|
+
NodeType: "EQuestNodeType::SetMeshGenerator";
|
|
7801
7382
|
TargetQuestGuid: string;
|
|
7802
|
-
}
|
|
7803
|
-
export
|
|
7804
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7383
|
+
}
|
|
7384
|
+
export interface QuestNodePrototypeSetName extends QuestNodePrototype {
|
|
7805
7385
|
NameSID: string;
|
|
7806
|
-
|
|
7807
|
-
NodeType: "EQuestNodeType::SetName" & EQuestNodeType;
|
|
7808
|
-
QuestSID: string;
|
|
7809
|
-
SID: string;
|
|
7386
|
+
NodeType: "EQuestNodeType::SetName";
|
|
7810
7387
|
TargetQuestGuid: string;
|
|
7811
|
-
}
|
|
7812
|
-
export
|
|
7388
|
+
}
|
|
7389
|
+
export interface QuestNodePrototypeSetNPCSequentialAbility extends QuestNodePrototype {
|
|
7813
7390
|
AbilityPrototypeSID: string;
|
|
7814
|
-
|
|
7815
|
-
NodePrototypeVersion: number;
|
|
7816
|
-
NodeType: "EQuestNodeType::SetNPCSequentialAbility" & EQuestNodeType;
|
|
7817
|
-
QuestSID: string;
|
|
7391
|
+
NodeType: "EQuestNodeType::SetNPCSequentialAbility";
|
|
7818
7392
|
SequentialAbilityModificationMode: EModifyAbilitySequenceQuestNodeMode;
|
|
7819
7393
|
SequentialAbilityPriority: number;
|
|
7820
|
-
SID: string;
|
|
7821
7394
|
TargetQuestGuid: string;
|
|
7822
|
-
}
|
|
7823
|
-
export
|
|
7395
|
+
}
|
|
7396
|
+
export interface QuestNodePrototypeSetPersonalRestriction extends QuestNodePrototype {
|
|
7824
7397
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7825
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7826
7398
|
NavAreaClass: string;
|
|
7827
|
-
|
|
7828
|
-
NodeType: "EQuestNodeType::SetPersonalRestriction" & EQuestNodeType;
|
|
7399
|
+
NodeType: "EQuestNodeType::SetPersonalRestriction";
|
|
7829
7400
|
PersonalRestriction: QuestNodePrototypePersonalRestriction;
|
|
7830
|
-
|
|
7831
|
-
|
|
7832
|
-
}>;
|
|
7833
|
-
export type QuestNodePrototypeSetQuestGiver = GetStructType<{
|
|
7834
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7401
|
+
}
|
|
7402
|
+
export interface QuestNodePrototypeSetQuestGiver extends QuestNodePrototype {
|
|
7835
7403
|
MainQuest: boolean;
|
|
7836
7404
|
MarkerDescription: string;
|
|
7837
|
-
|
|
7838
|
-
NodeType: "EQuestNodeType::SetQuestGiver" & EQuestNodeType;
|
|
7839
|
-
QuestSID: string;
|
|
7840
|
-
Repeatable: boolean;
|
|
7841
|
-
SID: string;
|
|
7405
|
+
NodeType: "EQuestNodeType::SetQuestGiver";
|
|
7842
7406
|
TargetQuestGuid: string;
|
|
7843
|
-
}
|
|
7844
|
-
export
|
|
7845
|
-
|
|
7846
|
-
NodePrototypeVersion: number;
|
|
7847
|
-
NodeType: "EQuestNodeType::SetSpaceRestrictor" & EQuestNodeType;
|
|
7848
|
-
QuestSID: string;
|
|
7849
|
-
SID: string;
|
|
7407
|
+
}
|
|
7408
|
+
export interface QuestNodePrototypeSetSpaceRestrictor extends QuestNodePrototype {
|
|
7409
|
+
NodeType: "EQuestNodeType::SetSpaceRestrictor";
|
|
7850
7410
|
TargetQuestGuid: string;
|
|
7851
|
-
}
|
|
7852
|
-
export
|
|
7411
|
+
}
|
|
7412
|
+
export interface QuestNodePrototypeSetTime extends QuestNodePrototype {
|
|
7853
7413
|
InGameHours: number;
|
|
7854
7414
|
InGameMinutes: number;
|
|
7855
|
-
|
|
7856
|
-
NodePrototypeVersion: number;
|
|
7857
|
-
NodeType: "EQuestNodeType::SetTime" & EQuestNodeType;
|
|
7858
|
-
QuestSID: string;
|
|
7859
|
-
SID: string;
|
|
7415
|
+
NodeType: "EQuestNodeType::SetTime";
|
|
7860
7416
|
TransitionTime: number;
|
|
7861
|
-
}
|
|
7862
|
-
export
|
|
7417
|
+
}
|
|
7418
|
+
export interface QuestNodePrototypeSetTimer extends QuestNodePrototype {
|
|
7863
7419
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7864
7420
|
InGameHours: number;
|
|
7865
|
-
|
|
7866
|
-
|
|
7867
|
-
|
|
7868
|
-
QuestSID: string;
|
|
7869
|
-
Repeatable: boolean;
|
|
7870
|
-
SID: string;
|
|
7871
|
-
}>;
|
|
7872
|
-
export type QuestNodePrototypeSetWeather = GetStructType<{
|
|
7421
|
+
NodeType: "EQuestNodeType::SetTimer";
|
|
7422
|
+
}
|
|
7423
|
+
export interface QuestNodePrototypeSetWeather extends QuestNodePrototype {
|
|
7873
7424
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7874
7425
|
Force: boolean;
|
|
7875
|
-
|
|
7876
|
-
NodePrototypeVersion: number;
|
|
7877
|
-
NodeType: "EQuestNodeType::SetWeather" & EQuestNodeType;
|
|
7878
|
-
QuestSID: string;
|
|
7879
|
-
SID: string;
|
|
7426
|
+
NodeType: "EQuestNodeType::SetWeather";
|
|
7880
7427
|
TransitionTime: number;
|
|
7881
7428
|
Weather: EWeather;
|
|
7882
|
-
}
|
|
7883
|
-
export
|
|
7429
|
+
}
|
|
7430
|
+
export interface QuestNodePrototypeSetWounded extends QuestNodePrototype {
|
|
7884
7431
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7885
7432
|
HealingType: EHealingType;
|
|
7886
|
-
|
|
7887
|
-
NodePrototypeVersion: number;
|
|
7888
|
-
NodeType: "EQuestNodeType::SetWounded" & EQuestNodeType;
|
|
7889
|
-
QuestSID: string;
|
|
7890
|
-
Repeatable: boolean;
|
|
7891
|
-
SID: string;
|
|
7433
|
+
NodeType: "EQuestNodeType::SetWounded";
|
|
7892
7434
|
TargetQuestGuid: string;
|
|
7893
7435
|
WoundedOn: boolean;
|
|
7894
|
-
}
|
|
7895
|
-
export
|
|
7436
|
+
}
|
|
7437
|
+
export interface QuestNodePrototypeShowFadeScreen extends QuestNodePrototype {
|
|
7896
7438
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7897
7439
|
FadeTime: number;
|
|
7898
7440
|
ImagePath: string;
|
|
7899
|
-
|
|
7900
|
-
NodePrototypeVersion: number;
|
|
7901
|
-
NodeType: "EQuestNodeType::ShowFadeScreen" & EQuestNodeType;
|
|
7902
|
-
QuestSID: string;
|
|
7903
|
-
Repeatable: boolean;
|
|
7441
|
+
NodeType: "EQuestNodeType::ShowFadeScreen";
|
|
7904
7442
|
ScreenText: string;
|
|
7905
|
-
|
|
7906
|
-
|
|
7907
|
-
export type QuestNodePrototypeShowLoadingScreen = GetStructType<{
|
|
7908
|
-
Launchers: string;
|
|
7443
|
+
}
|
|
7444
|
+
export interface QuestNodePrototypeShowLoadingScreen extends QuestNodePrototype {
|
|
7909
7445
|
LoadingScreenType: ELoadingDestination;
|
|
7910
|
-
|
|
7911
|
-
|
|
7912
|
-
|
|
7913
|
-
SID: string;
|
|
7914
|
-
}>;
|
|
7915
|
-
export type QuestNodePrototypeShowMarker = GetStructType<{
|
|
7446
|
+
NodeType: "EQuestNodeType::ShowLoadingScreen";
|
|
7447
|
+
}
|
|
7448
|
+
export interface QuestNodePrototypeShowMarker extends QuestNodePrototype {
|
|
7916
7449
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7917
7450
|
Discovered: boolean;
|
|
7918
7451
|
Explored: boolean;
|
|
7919
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7920
7452
|
MarkerSID: string;
|
|
7921
|
-
|
|
7922
|
-
|
|
7923
|
-
|
|
7924
|
-
|
|
7925
|
-
}>;
|
|
7926
|
-
export type QuestNodePrototypeShowTutorialWidget = GetStructType<{
|
|
7927
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
7928
|
-
NodePrototypeVersion: number;
|
|
7929
|
-
NodeType: "EQuestNodeType::ShowTutorialWidget" & EQuestNodeType;
|
|
7453
|
+
NodeType: "EQuestNodeType::ShowMarker";
|
|
7454
|
+
}
|
|
7455
|
+
export interface QuestNodePrototypeShowTutorialWidget extends QuestNodePrototype {
|
|
7456
|
+
NodeType: "EQuestNodeType::ShowTutorialWidget";
|
|
7930
7457
|
PDATutorialNoteSID: string;
|
|
7931
|
-
QuestSID: string;
|
|
7932
|
-
Repeatable: boolean;
|
|
7933
7458
|
RequiredInputs: CoreVariableLegs;
|
|
7934
|
-
SID: string;
|
|
7935
7459
|
TimerRate: number;
|
|
7936
7460
|
TutorialHeadLocalizedSID: string;
|
|
7937
7461
|
TutorialSID: string;
|
|
7938
7462
|
TutorialTextLocalizedSID: string;
|
|
7939
7463
|
WidgetType: number;
|
|
7940
|
-
}
|
|
7941
|
-
export
|
|
7464
|
+
}
|
|
7465
|
+
export interface QuestNodePrototypeSpawn extends QuestNodePrototype {
|
|
7942
7466
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
7943
7467
|
IgnoreDamageType: EIgnoreDamageType;
|
|
7944
|
-
|
|
7945
|
-
NodePrototypeVersion: number;
|
|
7946
|
-
NodeType: "EQuestNodeType::Spawn" & EQuestNodeType;
|
|
7947
|
-
QuestSID: string;
|
|
7948
|
-
Repeatable: boolean;
|
|
7949
|
-
SID: string;
|
|
7468
|
+
NodeType: "EQuestNodeType::Spawn";
|
|
7950
7469
|
SpawnHidden: boolean;
|
|
7951
7470
|
SpawnNodeExcludeType: ESpawnNodeExcludeType;
|
|
7952
7471
|
TargetQuestGuid: string;
|
|
7953
|
-
}
|
|
7954
|
-
export
|
|
7472
|
+
}
|
|
7473
|
+
export interface QuestNodePrototypeSpawnAnomaly extends QuestNodePrototype {
|
|
7955
7474
|
IgnoreDamageType: EIgnoreDamageType;
|
|
7956
|
-
|
|
7957
|
-
NodeType: "EQuestNodeType::SpawnAnomaly" & EQuestNodeType;
|
|
7958
|
-
QuestSID: string;
|
|
7959
|
-
SID: string;
|
|
7475
|
+
NodeType: "EQuestNodeType::SpawnAnomaly";
|
|
7960
7476
|
SpawnHidden: boolean;
|
|
7961
7477
|
SpawnNodeExcludeType: ESpawnNodeExcludeType;
|
|
7962
7478
|
TargetQuestGuid: string;
|
|
7963
|
-
}
|
|
7964
|
-
export
|
|
7479
|
+
}
|
|
7480
|
+
export interface QuestNodePrototypeSpawnAnomalySpawner extends QuestNodePrototype {
|
|
7965
7481
|
IgnoreDamageType: EIgnoreDamageType;
|
|
7966
|
-
|
|
7967
|
-
NodeType: "EQuestNodeType::SpawnAnomalySpawner" & EQuestNodeType;
|
|
7968
|
-
QuestSID: string;
|
|
7969
|
-
SID: string;
|
|
7482
|
+
NodeType: "EQuestNodeType::SpawnAnomalySpawner";
|
|
7970
7483
|
SpawnHidden: boolean;
|
|
7971
7484
|
SpawnNodeExcludeType: ESpawnNodeExcludeType;
|
|
7972
7485
|
TargetQuestGuid: string;
|
|
7973
|
-
}
|
|
7974
|
-
export
|
|
7486
|
+
}
|
|
7487
|
+
export interface QuestNodePrototypeSpawnArtifactSpawner extends QuestNodePrototype {
|
|
7975
7488
|
IgnoreDamageType: EIgnoreDamageType;
|
|
7976
|
-
|
|
7977
|
-
NodeType: "EQuestNodeType::SpawnArtifactSpawner" & EQuestNodeType;
|
|
7978
|
-
QuestSID: string;
|
|
7979
|
-
SID: string;
|
|
7489
|
+
NodeType: "EQuestNodeType::SpawnArtifactSpawner";
|
|
7980
7490
|
SpawnHidden: boolean;
|
|
7981
7491
|
SpawnNodeExcludeType: ESpawnNodeExcludeType;
|
|
7982
7492
|
TargetQuestGuid: string;
|
|
7983
|
-
}
|
|
7984
|
-
export
|
|
7493
|
+
}
|
|
7494
|
+
export interface QuestNodePrototypeSpawnDeadBody extends QuestNodePrototype {
|
|
7985
7495
|
IgnoreDamageType: EIgnoreDamageType;
|
|
7986
|
-
|
|
7987
|
-
NodeType: "EQuestNodeType::SpawnDeadBody" & EQuestNodeType;
|
|
7988
|
-
QuestSID: string;
|
|
7989
|
-
SID: string;
|
|
7496
|
+
NodeType: "EQuestNodeType::SpawnDeadBody";
|
|
7990
7497
|
SpawnHidden: boolean;
|
|
7991
7498
|
SpawnNodeExcludeType: ESpawnNodeExcludeType;
|
|
7992
7499
|
TargetQuestGuid: string;
|
|
7993
|
-
}
|
|
7994
|
-
export
|
|
7500
|
+
}
|
|
7501
|
+
export interface QuestNodePrototypeSpawnItemContainer extends QuestNodePrototype {
|
|
7995
7502
|
IgnoreDamageType: EIgnoreDamageType;
|
|
7996
|
-
|
|
7997
|
-
NodeType: "EQuestNodeType::SpawnItemContainer" & EQuestNodeType;
|
|
7998
|
-
QuestSID: string;
|
|
7999
|
-
SID: string;
|
|
7503
|
+
NodeType: "EQuestNodeType::SpawnItemContainer";
|
|
8000
7504
|
SpawnHidden: boolean;
|
|
8001
7505
|
SpawnNodeExcludeType: ESpawnNodeExcludeType;
|
|
8002
7506
|
TargetQuestGuid: string;
|
|
8003
|
-
}
|
|
8004
|
-
export
|
|
7507
|
+
}
|
|
7508
|
+
export interface QuestNodePrototypeSpawnLair extends QuestNodePrototype {
|
|
8005
7509
|
IgnoreDamageType: EIgnoreDamageType;
|
|
8006
|
-
|
|
8007
|
-
NodeType: "EQuestNodeType::SpawnLair" & EQuestNodeType;
|
|
8008
|
-
QuestSID: string;
|
|
8009
|
-
SID: string;
|
|
7510
|
+
NodeType: "EQuestNodeType::SpawnLair";
|
|
8010
7511
|
SpawnHidden: boolean;
|
|
8011
7512
|
SpawnNodeExcludeType: ESpawnNodeExcludeType;
|
|
8012
7513
|
TargetQuestGuid: string;
|
|
8013
|
-
}
|
|
8014
|
-
export
|
|
7514
|
+
}
|
|
7515
|
+
export interface QuestNodePrototypeSpawnSafeZone extends QuestNodePrototype {
|
|
8015
7516
|
IgnoreDamageType: EIgnoreDamageType;
|
|
8016
|
-
|
|
8017
|
-
NodeType: "EQuestNodeType::SpawnSafeZone" & EQuestNodeType;
|
|
8018
|
-
QuestSID: string;
|
|
8019
|
-
SID: string;
|
|
7517
|
+
NodeType: "EQuestNodeType::SpawnSafeZone";
|
|
8020
7518
|
SpawnHidden: boolean;
|
|
8021
7519
|
SpawnNodeExcludeType: ESpawnNodeExcludeType;
|
|
8022
7520
|
TargetQuestGuid: string;
|
|
8023
|
-
}
|
|
8024
|
-
export
|
|
7521
|
+
}
|
|
7522
|
+
export interface QuestNodePrototypeSpawnSingleObj extends QuestNodePrototype {
|
|
8025
7523
|
IgnoreDamageType: EIgnoreDamageType;
|
|
8026
|
-
|
|
8027
|
-
NodeType: "EQuestNodeType::SpawnSingleObj" & EQuestNodeType;
|
|
8028
|
-
QuestSID: string;
|
|
8029
|
-
SID: string;
|
|
7524
|
+
NodeType: "EQuestNodeType::SpawnSingleObj";
|
|
8030
7525
|
SpawnHidden: boolean;
|
|
8031
7526
|
SpawnNodeExcludeType: ESpawnNodeExcludeType;
|
|
8032
7527
|
TargetQuestGuid: string;
|
|
8033
|
-
}
|
|
8034
|
-
export
|
|
7528
|
+
}
|
|
7529
|
+
export interface QuestNodePrototypeSpawnSquad extends QuestNodePrototype {
|
|
8035
7530
|
IgnoreDamageType: EIgnoreDamageType;
|
|
8036
|
-
|
|
8037
|
-
NodeType: "EQuestNodeType::SpawnSquad" & EQuestNodeType;
|
|
8038
|
-
QuestSID: string;
|
|
8039
|
-
SID: string;
|
|
7531
|
+
NodeType: "EQuestNodeType::SpawnSquad";
|
|
8040
7532
|
SpawnHidden: boolean;
|
|
8041
7533
|
SpawnNodeExcludeType: ESpawnNodeExcludeType;
|
|
8042
7534
|
TargetQuestGuid: string;
|
|
8043
|
-
}
|
|
8044
|
-
export
|
|
7535
|
+
}
|
|
7536
|
+
export interface QuestNodePrototypeSpawnTrigger extends QuestNodePrototype {
|
|
8045
7537
|
IgnoreDamageType: EIgnoreDamageType;
|
|
8046
|
-
|
|
8047
|
-
NodeType: "EQuestNodeType::SpawnTrigger" & EQuestNodeType;
|
|
8048
|
-
QuestSID: string;
|
|
8049
|
-
SID: string;
|
|
7538
|
+
NodeType: "EQuestNodeType::SpawnTrigger";
|
|
8050
7539
|
SpawnHidden: boolean;
|
|
8051
7540
|
SpawnNodeExcludeType: ESpawnNodeExcludeType;
|
|
8052
7541
|
TargetQuestGuid: string;
|
|
8053
|
-
}
|
|
8054
|
-
export
|
|
7542
|
+
}
|
|
7543
|
+
export interface QuestNodePrototypeStartBenchmark extends QuestNodePrototype {
|
|
8055
7544
|
BenchRuns: number;
|
|
8056
7545
|
CameraHeight: number;
|
|
8057
7546
|
CircleRadius: number;
|
|
8058
7547
|
InitialPitch: number;
|
|
8059
7548
|
InitialYaw: number;
|
|
8060
|
-
|
|
8061
|
-
NodePrototypeVersion: number;
|
|
8062
|
-
NodeType: "EQuestNodeType::StartBenchmark" & EQuestNodeType;
|
|
7549
|
+
NodeType: "EQuestNodeType::StartBenchmark";
|
|
8063
7550
|
ProfileCsv: boolean;
|
|
8064
|
-
|
|
8065
|
-
|
|
8066
|
-
}>;
|
|
8067
|
-
export type QuestNodePrototypeSwitchQuestItemState = GetStructType<{
|
|
7551
|
+
}
|
|
7552
|
+
export interface QuestNodePrototypeSwitchQuestItemState extends QuestNodePrototype {
|
|
8068
7553
|
ItemPrototypeSID: string;
|
|
8069
|
-
|
|
8070
|
-
NodePrototypeVersion: number;
|
|
8071
|
-
NodeType: "EQuestNodeType::SwitchQuestItemState" & EQuestNodeType;
|
|
7554
|
+
NodeType: "EQuestNodeType::SwitchQuestItemState";
|
|
8072
7555
|
QuestItem: boolean;
|
|
8073
|
-
|
|
8074
|
-
Repeatable: boolean;
|
|
8075
|
-
SID: string;
|
|
8076
|
-
}>;
|
|
7556
|
+
}
|
|
8077
7557
|
export type QuestNodePrototypeTalkThroughRadio = GetStructType<boolean[]>;
|
|
8078
7558
|
export type QuestNodePrototypeTargetLocations = GetStructType<AIGlobalRelativeLocation[]>;
|
|
8079
|
-
export
|
|
7559
|
+
export interface QuestNodePrototypeTechnical extends QuestNodePrototype {
|
|
8080
7560
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
8081
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
8082
7561
|
LaunchOnQuestStart: boolean;
|
|
8083
|
-
|
|
8084
|
-
NodeType: "EQuestNodeType::Technical" & EQuestNodeType;
|
|
8085
|
-
QuestSID: string;
|
|
8086
|
-
Repeatable: boolean;
|
|
8087
|
-
SID: string;
|
|
7562
|
+
NodeType: "EQuestNodeType::Technical";
|
|
8088
7563
|
StartDelay: number;
|
|
8089
|
-
}
|
|
8090
|
-
export
|
|
7564
|
+
}
|
|
7565
|
+
export interface QuestNodePrototypeTeleportCharacter extends QuestNodePrototype {
|
|
8091
7566
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
8092
|
-
|
|
8093
|
-
NodePrototypeVersion: number;
|
|
8094
|
-
NodeType: "EQuestNodeType::TeleportCharacter" & EQuestNodeType;
|
|
8095
|
-
QuestSID: string;
|
|
8096
|
-
Repeatable: boolean;
|
|
7567
|
+
NodeType: "EQuestNodeType::TeleportCharacter";
|
|
8097
7568
|
ShouldBlendViaFade: boolean;
|
|
8098
|
-
SID: string;
|
|
8099
7569
|
TargetQuestGuid: string;
|
|
8100
7570
|
TeleportLocationAndRotation: QuestNodePrototypeRotationAfterMoveTo;
|
|
8101
7571
|
TeleportType: EGSCTeleportType;
|
|
8102
|
-
}
|
|
8103
|
-
export
|
|
8104
|
-
|
|
8105
|
-
|
|
8106
|
-
|
|
8107
|
-
QuestSID: string;
|
|
8108
|
-
SID: string;
|
|
8109
|
-
}>;
|
|
8110
|
-
export type QuestNodePrototypeToggleLairActivity = GetStructType<{
|
|
7572
|
+
}
|
|
7573
|
+
export interface QuestNodePrototypeTimeLock extends QuestNodePrototype {
|
|
7574
|
+
NodeType: "EQuestNodeType::TimeLock";
|
|
7575
|
+
}
|
|
7576
|
+
export interface QuestNodePrototypeToggleLairActivity extends QuestNodePrototype {
|
|
8111
7577
|
Activate: boolean;
|
|
8112
7578
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
8113
7579
|
ForceDespawn: boolean;
|
|
8114
|
-
|
|
8115
|
-
NodePrototypeVersion: number;
|
|
8116
|
-
NodeType: "EQuestNodeType::ToggleLairActivity" & EQuestNodeType;
|
|
8117
|
-
QuestSID: string;
|
|
8118
|
-
Repeatable: boolean;
|
|
8119
|
-
SID: string;
|
|
7580
|
+
NodeType: "EQuestNodeType::ToggleLairActivity";
|
|
8120
7581
|
TargetQuestGuid: string;
|
|
8121
|
-
}
|
|
8122
|
-
export
|
|
7582
|
+
}
|
|
7583
|
+
export interface QuestNodePrototypeToggleNPCHidden extends QuestNodePrototype {
|
|
8123
7584
|
HideViewType: EHideViewType;
|
|
8124
|
-
|
|
8125
|
-
NodePrototypeVersion: number;
|
|
8126
|
-
NodeType: "EQuestNodeType::ToggleNPCHidden" & EQuestNodeType;
|
|
8127
|
-
QuestSID: string;
|
|
8128
|
-
Repeatable: boolean;
|
|
8129
|
-
SID: string;
|
|
7585
|
+
NodeType: "EQuestNodeType::ToggleNPCHidden";
|
|
8130
7586
|
TargetQuestGuid: string;
|
|
8131
|
-
}
|
|
8132
|
-
export
|
|
7587
|
+
}
|
|
7588
|
+
export interface QuestNodePrototypeTrackJournal extends QuestNodePrototype {
|
|
8133
7589
|
JournalQuestSID: string;
|
|
8134
|
-
|
|
8135
|
-
|
|
8136
|
-
|
|
8137
|
-
|
|
8138
|
-
}
|
|
8139
|
-
export
|
|
8140
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
8141
|
-
NodeType: "EQuestNodeType::TrackShelter" & EQuestNodeType;
|
|
8142
|
-
QuestSID: string;
|
|
8143
|
-
SID: string;
|
|
8144
|
-
}>;
|
|
8145
|
-
export type QuestNodePrototypeTrigger = GetStructType<{
|
|
7590
|
+
NodeType: "EQuestNodeType::TrackJournal";
|
|
7591
|
+
}
|
|
7592
|
+
export interface QuestNodePrototypeTrackShelter extends QuestNodePrototype {
|
|
7593
|
+
NodeType: "EQuestNodeType::TrackShelter";
|
|
7594
|
+
}
|
|
7595
|
+
export interface QuestNodePrototypeTrigger extends QuestNodePrototype {
|
|
8146
7596
|
BrokenGameDataFilter: EBrokenGameDataFilter;
|
|
8147
7597
|
bTriggersByAnybody: boolean;
|
|
8148
7598
|
EventType: EQuestEventType;
|
|
8149
|
-
Launchers: QuestNodePrototypeLaunchers;
|
|
8150
7599
|
LaunchOnQuestStart: boolean;
|
|
8151
|
-
|
|
8152
|
-
NodeType: "EQuestNodeType::Trigger" & EQuestNodeType;
|
|
8153
|
-
QuestSID: string;
|
|
7600
|
+
NodeType: "EQuestNodeType::Trigger";
|
|
8154
7601
|
ReactType: ETriggerReact;
|
|
8155
|
-
Repeatable: boolean;
|
|
8156
7602
|
RequiredSquadMembers: ERequiredSquadMembers;
|
|
8157
|
-
SID: string;
|
|
8158
7603
|
TargetQuestGuid: string;
|
|
8159
7604
|
TrackBeforeActive: boolean;
|
|
8160
7605
|
TriggerAction: number;
|
|
8161
7606
|
TriggerQuestGuid: string;
|
|
8162
|
-
}
|
|
7607
|
+
}
|
|
8163
7608
|
export type QuestNodePrototypeUpgradeSIDs = StringArray;
|
|
8164
7609
|
export type QuestNodePrototypeZoneSubMarkers = GetStructType<QuestNodePrototypeZoneSubMarkersItem[]>;
|
|
8165
7610
|
export type QuestNodePrototypeZoneSubMarkersItem = GetStructType<{
|