diff --git a/ObservatoryFramework/Files/Converters/MaterialConverter.cs b/ObservatoryFramework/Files/Converters/MaterialConverter.cs index 0006cb8..69e8414 100644 --- a/ObservatoryFramework/Files/Converters/MaterialConverter.cs +++ b/ObservatoryFramework/Files/Converters/MaterialConverter.cs @@ -30,6 +30,7 @@ namespace Observatory.Framework.Files.Converters var material = new Material { Name = name, + Name_Localised = name, Count = count }; materialComposition.Add(material); diff --git a/ObservatoryFramework/Files/Journal/FleetCarrier/CarrierJumpRequest.cs b/ObservatoryFramework/Files/Journal/FleetCarrier/CarrierJumpRequest.cs index 69af5dd..d88d086 100644 --- a/ObservatoryFramework/Files/Journal/FleetCarrier/CarrierJumpRequest.cs +++ b/ObservatoryFramework/Files/Journal/FleetCarrier/CarrierJumpRequest.cs @@ -8,5 +8,6 @@ public ulong CarrierID { get; init; } public string SystemName { get; init; } public ulong SystemID { get; init; } + public string DepartureTime { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/Odyssey/UpgradeSuit.cs b/ObservatoryFramework/Files/Journal/Odyssey/UpgradeSuit.cs index 9adf998..171779a 100644 --- a/ObservatoryFramework/Files/Journal/Odyssey/UpgradeSuit.cs +++ b/ObservatoryFramework/Files/Journal/Odyssey/UpgradeSuit.cs @@ -1,4 +1,6 @@ -namespace Observatory.Framework.Files.Journal +using Observatory.Framework.Files.ParameterTypes; + +namespace Observatory.Framework.Files.Journal { public class UpgradeSuit : JournalBase { @@ -7,5 +9,6 @@ public ulong SuitID { get; init; } public int Class { get; init; } public int Cost { get; init; } + public Material[] Resources { get; init; } } } diff --git a/ObservatoryFramework/Files/Journal/StationServices/MissionCompleted.cs b/ObservatoryFramework/Files/Journal/StationServices/MissionCompleted.cs index ffb73b5..d096884 100644 --- a/ObservatoryFramework/Files/Journal/StationServices/MissionCompleted.cs +++ b/ObservatoryFramework/Files/Journal/StationServices/MissionCompleted.cs @@ -27,6 +27,7 @@ namespace Observatory.Framework.Files.Journal public ImmutableList MaterialsReward { get; init; } 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 KillCount { get; init; } diff --git a/ObservatoryFramework/Files/ParameterTypes/Enumerations.cs b/ObservatoryFramework/Files/ParameterTypes/Enumerations.cs index 70cfd1f..e52a23f 100644 --- a/ObservatoryFramework/Files/ParameterTypes/Enumerations.cs +++ b/ObservatoryFramework/Files/ParameterTypes/Enumerations.cs @@ -480,7 +480,8 @@ namespace Observatory.Framework.Files.ParameterTypes OnFootExterior = 1 << 15, BreathableAtmosphere = 1 << 16, TelepresenceMulticrew = 1 << 17, - PhysicalMulticrew = 1 << 18 + PhysicalMulticrew = 1 << 18, + FsdHyperdriveCharging = 1 << 19 } public enum LegalStatus diff --git a/ObservatoryFramework/Files/ParameterTypes/Material.cs b/ObservatoryFramework/Files/ParameterTypes/Material.cs index c8308c9..fac204d 100644 --- a/ObservatoryFramework/Files/ParameterTypes/Material.cs +++ b/ObservatoryFramework/Files/ParameterTypes/Material.cs @@ -3,7 +3,7 @@ public class Material { public string Name { get; init; } - + public string Name_Localised { get; init; } public int Count { get; init; } } }