2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

Update 11 journal changes

This commit is contained in:
Xjph 2022-03-15 11:15:44 -02:30
parent 4f4ba88878
commit 3af9e3ec7b
13 changed files with 22 additions and 3 deletions

View File

@ -1,5 +1,8 @@
namespace Observatory.Framework.Files.Journal namespace Observatory.Framework.Files.Journal
{ {
public class SRVDestroyed : JournalBase public class SRVDestroyed : JournalBase
{ } {
public string SRVType { get; init; }
public string SRVType_Localised { get; init; }
}
} }

View File

@ -3,5 +3,6 @@
public class ChangeCrewRole : JournalBase public class ChangeCrewRole : JournalBase
{ {
public string Role { get; init; } public string Role { get; init; }
public bool Telepresence { get; init; }
} }
} }

View File

@ -3,5 +3,6 @@
public class CrewLaunchFighter : CrewMemberJoins public class CrewLaunchFighter : CrewMemberJoins
{ {
public ulong ID { get; init; } public ulong ID { get; init; }
public bool Telepresence { get; init; }
} }
} }

View File

@ -3,5 +3,6 @@
public class CrewMemberJoins : JournalBase public class CrewMemberJoins : JournalBase
{ {
public string Crew { get; init; } public string Crew { get; init; }
public bool Telepresence { get; init; }
} }
} }

View File

@ -2,5 +2,6 @@
{ {
public class CrewMemberQuits : CrewMemberJoins public class CrewMemberQuits : CrewMemberJoins
{ {
public bool Telepresence { get; init; }
} }
} }

View File

@ -3,5 +3,6 @@
public class CrewMemberRoleChange : CrewMemberJoins public class CrewMemberRoleChange : CrewMemberJoins
{ {
public string Role { get; init; } public string Role { get; init; }
public bool Telepresence { get; init; }
} }
} }

View File

@ -2,5 +2,7 @@
{ {
public class DockSRV : DockFighter public class DockSRV : DockFighter
{ {
public string SRVType { get; init; }
public string SRVType_Localised { get; init; }
} }
} }

View File

@ -3,5 +3,6 @@
public class EndCrewSession : JournalBase public class EndCrewSession : JournalBase
{ {
public bool OnCrime { get; init; } public bool OnCrime { get; init; }
public bool Telepresence { get; init; }
} }
} }

View File

@ -3,5 +3,6 @@
public class JoinACrew : JournalBase public class JoinACrew : JournalBase
{ {
public string Captain { get; init; } public string Captain { get; init; }
public bool Telepresence { get; init; }
} }
} }

View File

@ -4,5 +4,6 @@
{ {
public string Crew { get; init; } public string Crew { get; init; }
public bool OnCrime { get; init; } public bool OnCrime { get; init; }
public bool Telepresence { get; init; }
} }
} }

View File

@ -5,5 +5,7 @@
public string Loadout { get; init; } public string Loadout { get; init; }
public ulong ID { get; init; } public ulong ID { get; init; }
public bool PlayerControlled { get; init; } public bool PlayerControlled { get; init; }
public string SRVType { get; init; }
public string SRVType_Localised { get; init; }
} }
} }

View File

@ -2,5 +2,6 @@
{ {
public class QuitACrew : JoinACrew public class QuitACrew : JoinACrew
{ {
public bool Telepresence { get; init; }
} }
} }

View File

@ -81,7 +81,8 @@ namespace Observatory.Framework.Files.ParameterTypes
onfoot_profileCloningIntent, onfoot_profileCloningIntent,
onFoot_failureToSubmitToPolice, onFoot_failureToSubmitToPolice,
onfoot_dataTransfer, onfoot_dataTransfer,
onFoot_carryingStolenGoods onFoot_carryingStolenGoods,
onFoot_eBreachUse
} }
public enum LimpetDrone public enum LimpetDrone
@ -477,7 +478,9 @@ namespace Observatory.Framework.Files.ParameterTypes
OnFootInHangar = 1 << 13, OnFootInHangar = 1 << 13,
OnFootInSocialSpace = 1 << 14, OnFootInSocialSpace = 1 << 14,
OnFootExterior = 1 << 15, OnFootExterior = 1 << 15,
BreathableAtmosphere = 1 << 16 BreathableAtmosphere = 1 << 16,
TelepresenceMulticrew = 1 << 17,
PhysicalMulticrew = 1 << 18
} }
public enum LegalStatus public enum LegalStatus