From 796819617bb92ec984a4b6e510010ff70bc7c651 Mon Sep 17 00:00:00 2001 From: Xjph Date: Mon, 29 Aug 2022 10:03:51 -0230 Subject: [PATCH] Odyssey Update 13 journal changes --- .../Journal/Exploration/SAASignalsFound.cs | 4 ++++ .../Journal/StationServices/MissionAccepted.cs | 1 + .../Files/Journal/Travel/NavRouteClear.cs | 6 ++++++ .../Files/ParameterTypes/Genus.cs | 17 +++++++++++++++++ 4 files changed, 28 insertions(+) create mode 100644 ObservatoryFramework/Files/Journal/Travel/NavRouteClear.cs create mode 100644 ObservatoryFramework/Files/ParameterTypes/Genus.cs diff --git a/ObservatoryFramework/Files/Journal/Exploration/SAASignalsFound.cs b/ObservatoryFramework/Files/Journal/Exploration/SAASignalsFound.cs index 93b91b8..e039492 100644 --- a/ObservatoryFramework/Files/Journal/Exploration/SAASignalsFound.cs +++ b/ObservatoryFramework/Files/Journal/Exploration/SAASignalsFound.cs @@ -24,5 +24,9 @@ namespace Observatory.Framework.Files.Journal /// List of signals found. /// public ImmutableList Signals { get; init; } + /// + /// List of genuses present. + /// + public ImmutableList Genuses { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/StationServices/MissionAccepted.cs b/ObservatoryFramework/Files/Journal/StationServices/MissionAccepted.cs index 9998de9..d282ddc 100644 --- a/ObservatoryFramework/Files/Journal/StationServices/MissionAccepted.cs +++ b/ObservatoryFramework/Files/Journal/StationServices/MissionAccepted.cs @@ -44,6 +44,7 @@ namespace Observatory.Framework.Files.Journal } public string DestinationSystem { get; init; } public string DestinationStation { get; init; } + public string DestinationSettlement { get; init; } public string NewDestinationSystem { get; init; } public string NewDestinationStation { get; init; } public int PassengerCount { get; init; } diff --git a/ObservatoryFramework/Files/Journal/Travel/NavRouteClear.cs b/ObservatoryFramework/Files/Journal/Travel/NavRouteClear.cs new file mode 100644 index 0000000..d78ff79 --- /dev/null +++ b/ObservatoryFramework/Files/Journal/Travel/NavRouteClear.cs @@ -0,0 +1,6 @@ +namespace Observatory.Framework.Files.Journal +{ + public class NavRouteClear : JournalBase + { + } +} diff --git a/ObservatoryFramework/Files/ParameterTypes/Genus.cs b/ObservatoryFramework/Files/ParameterTypes/Genus.cs new file mode 100644 index 0000000..3eb7044 --- /dev/null +++ b/ObservatoryFramework/Files/ParameterTypes/Genus.cs @@ -0,0 +1,17 @@ +namespace Observatory.Framework.Files.ParameterTypes +{ + /// + /// Genus object used within SAASignalsFound event + /// + public class GenusType + { + /// + /// Internal (non-localised) name of genus, e.g.: "$Codex_Ent_Stratum_Genus_Name" + /// + public string Genus { get; init; } + /// + /// Name of genus localised for player locale, e.g.: "Stratum" + /// + public string Genus_Localised { get; init; } + } +}