From 3af9e3ec7b8ac6c11bdaf7b1c7cf54b544174c94 Mon Sep 17 00:00:00 2001 From: Xjph Date: Tue, 15 Mar 2022 11:15:44 -0230 Subject: [PATCH] Update 11 journal changes --- ObservatoryFramework/Files/Journal/Combat/SRVDestroyed.cs | 5 ++++- ObservatoryFramework/Files/Journal/Other/ChangeCrewRole.cs | 1 + .../Files/Journal/Other/CrewLaunchFighter.cs | 1 + .../Files/Journal/Other/CrewMemberJoins.cs | 1 + .../Files/Journal/Other/CrewMemberQuits.cs | 1 + .../Files/Journal/Other/CrewMemberRoleChange.cs | 1 + ObservatoryFramework/Files/Journal/Other/DockSRV.cs | 2 ++ ObservatoryFramework/Files/Journal/Other/EndCrewSession.cs | 1 + ObservatoryFramework/Files/Journal/Other/JoinACrew.cs | 1 + ObservatoryFramework/Files/Journal/Other/KickCrewMember.cs | 1 + ObservatoryFramework/Files/Journal/Other/LaunchSRV.cs | 2 ++ ObservatoryFramework/Files/Journal/Other/QuitACrew.cs | 1 + ObservatoryFramework/Files/ParameterTypes/Enumerations.cs | 7 +++++-- 13 files changed, 22 insertions(+), 3 deletions(-) diff --git a/ObservatoryFramework/Files/Journal/Combat/SRVDestroyed.cs b/ObservatoryFramework/Files/Journal/Combat/SRVDestroyed.cs index 0acae38..3b3f5a6 100644 --- a/ObservatoryFramework/Files/Journal/Combat/SRVDestroyed.cs +++ b/ObservatoryFramework/Files/Journal/Combat/SRVDestroyed.cs @@ -1,5 +1,8 @@ namespace Observatory.Framework.Files.Journal { public class SRVDestroyed : JournalBase - { } + { + public string SRVType { get; init; } + public string SRVType_Localised { get; init; } + } } diff --git a/ObservatoryFramework/Files/Journal/Other/ChangeCrewRole.cs b/ObservatoryFramework/Files/Journal/Other/ChangeCrewRole.cs index 2a423c3..a1c7d64 100644 --- a/ObservatoryFramework/Files/Journal/Other/ChangeCrewRole.cs +++ b/ObservatoryFramework/Files/Journal/Other/ChangeCrewRole.cs @@ -3,5 +3,6 @@ public class ChangeCrewRole : JournalBase { public string Role { get; init; } + public bool Telepresence { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/Other/CrewLaunchFighter.cs b/ObservatoryFramework/Files/Journal/Other/CrewLaunchFighter.cs index 6365656..1f92a1a 100644 --- a/ObservatoryFramework/Files/Journal/Other/CrewLaunchFighter.cs +++ b/ObservatoryFramework/Files/Journal/Other/CrewLaunchFighter.cs @@ -3,5 +3,6 @@ public class CrewLaunchFighter : CrewMemberJoins { public ulong ID { get; init; } + public bool Telepresence { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/Other/CrewMemberJoins.cs b/ObservatoryFramework/Files/Journal/Other/CrewMemberJoins.cs index 2068a6c..7763a19 100644 --- a/ObservatoryFramework/Files/Journal/Other/CrewMemberJoins.cs +++ b/ObservatoryFramework/Files/Journal/Other/CrewMemberJoins.cs @@ -3,5 +3,6 @@ public class CrewMemberJoins : JournalBase { public string Crew { get; init; } + public bool Telepresence { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/Other/CrewMemberQuits.cs b/ObservatoryFramework/Files/Journal/Other/CrewMemberQuits.cs index 97d8f8d..f0b145f 100644 --- a/ObservatoryFramework/Files/Journal/Other/CrewMemberQuits.cs +++ b/ObservatoryFramework/Files/Journal/Other/CrewMemberQuits.cs @@ -2,5 +2,6 @@ { public class CrewMemberQuits : CrewMemberJoins { + public bool Telepresence { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/Other/CrewMemberRoleChange.cs b/ObservatoryFramework/Files/Journal/Other/CrewMemberRoleChange.cs index 1eaa99a..f494bbe 100644 --- a/ObservatoryFramework/Files/Journal/Other/CrewMemberRoleChange.cs +++ b/ObservatoryFramework/Files/Journal/Other/CrewMemberRoleChange.cs @@ -3,5 +3,6 @@ public class CrewMemberRoleChange : CrewMemberJoins { public string Role { get; init; } + public bool Telepresence { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/Other/DockSRV.cs b/ObservatoryFramework/Files/Journal/Other/DockSRV.cs index 0ae557d..e51ce43 100644 --- a/ObservatoryFramework/Files/Journal/Other/DockSRV.cs +++ b/ObservatoryFramework/Files/Journal/Other/DockSRV.cs @@ -2,5 +2,7 @@ { public class DockSRV : DockFighter { + public string SRVType { get; init; } + public string SRVType_Localised { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/Other/EndCrewSession.cs b/ObservatoryFramework/Files/Journal/Other/EndCrewSession.cs index 4d42fcb..7c620be 100644 --- a/ObservatoryFramework/Files/Journal/Other/EndCrewSession.cs +++ b/ObservatoryFramework/Files/Journal/Other/EndCrewSession.cs @@ -3,5 +3,6 @@ public class EndCrewSession : JournalBase { public bool OnCrime { get; init; } + public bool Telepresence { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/Other/JoinACrew.cs b/ObservatoryFramework/Files/Journal/Other/JoinACrew.cs index 09bdaac..1690c5d 100644 --- a/ObservatoryFramework/Files/Journal/Other/JoinACrew.cs +++ b/ObservatoryFramework/Files/Journal/Other/JoinACrew.cs @@ -3,5 +3,6 @@ public class JoinACrew : JournalBase { public string Captain { get; init; } + public bool Telepresence { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/Other/KickCrewMember.cs b/ObservatoryFramework/Files/Journal/Other/KickCrewMember.cs index 2163e32..a4d399e 100644 --- a/ObservatoryFramework/Files/Journal/Other/KickCrewMember.cs +++ b/ObservatoryFramework/Files/Journal/Other/KickCrewMember.cs @@ -4,5 +4,6 @@ { public string Crew { get; init; } public bool OnCrime { get; init; } + public bool Telepresence { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/Other/LaunchSRV.cs b/ObservatoryFramework/Files/Journal/Other/LaunchSRV.cs index dc6ca3c..5186f48 100644 --- a/ObservatoryFramework/Files/Journal/Other/LaunchSRV.cs +++ b/ObservatoryFramework/Files/Journal/Other/LaunchSRV.cs @@ -5,5 +5,7 @@ public string Loadout { get; init; } public ulong ID { get; init; } public bool PlayerControlled { get; init; } + public string SRVType { get; init; } + public string SRVType_Localised { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/Other/QuitACrew.cs b/ObservatoryFramework/Files/Journal/Other/QuitACrew.cs index fae4e96..ec8c729 100644 --- a/ObservatoryFramework/Files/Journal/Other/QuitACrew.cs +++ b/ObservatoryFramework/Files/Journal/Other/QuitACrew.cs @@ -2,5 +2,6 @@ { public class QuitACrew : JoinACrew { + public bool Telepresence { get; init; } } } diff --git a/ObservatoryFramework/Files/ParameterTypes/Enumerations.cs b/ObservatoryFramework/Files/ParameterTypes/Enumerations.cs index 246d9e5..70cfd1f 100644 --- a/ObservatoryFramework/Files/ParameterTypes/Enumerations.cs +++ b/ObservatoryFramework/Files/ParameterTypes/Enumerations.cs @@ -81,7 +81,8 @@ namespace Observatory.Framework.Files.ParameterTypes onfoot_profileCloningIntent, onFoot_failureToSubmitToPolice, onfoot_dataTransfer, - onFoot_carryingStolenGoods + onFoot_carryingStolenGoods, + onFoot_eBreachUse } public enum LimpetDrone @@ -477,7 +478,9 @@ namespace Observatory.Framework.Files.ParameterTypes OnFootInHangar = 1 << 13, OnFootInSocialSpace = 1 << 14, OnFootExterior = 1 << 15, - BreathableAtmosphere = 1 << 16 + BreathableAtmosphere = 1 << 16, + TelepresenceMulticrew = 1 << 17, + PhysicalMulticrew = 1 << 18 } public enum LegalStatus