Update 14 jounal changes
This commit is contained in:
parent
9b34d50d32
commit
e4049d67c1
6 changed files with 10 additions and 3 deletions
|
|
@ -30,6 +30,7 @@ namespace Observatory.Framework.Files.Converters
|
|||
var material = new Material
|
||||
{
|
||||
Name = name,
|
||||
Name_Localised = name,
|
||||
Count = count
|
||||
};
|
||||
materialComposition.Add(material);
|
||||
|
|
|
|||
|
|
@ -8,5 +8,6 @@
|
|||
public ulong CarrierID { get; init; }
|
||||
public string SystemName { get; init; }
|
||||
public ulong SystemID { get; init; }
|
||||
public string DepartureTime { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ namespace Observatory.Framework.Files.Journal
|
|||
public ImmutableList<MaterialReward> 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; }
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
public class Material
|
||||
{
|
||||
public string Name { get; init; }
|
||||
|
||||
public string Name_Localised { get; init; }
|
||||
public int Count { get; init; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue