mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
Journal changes for Odyssey Update 12
This commit is contained in:
parent
2200b94a6c
commit
396a5a9217
16
ObservatoryFramework/Files/FCMaterialsFile.cs
Normal file
16
ObservatoryFramework/Files/FCMaterialsFile.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
|
||||
namespace Observatory.Framework.Files
|
||||
{
|
||||
/// <summary>
|
||||
/// Elite Dangerous fcmaterials.json file. Contains data about current fleet carrier bartender stock.
|
||||
/// </summary>
|
||||
public class FCMaterialsFile : Journal.JournalBase
|
||||
{
|
||||
/// <summary>
|
||||
/// List of items in stock and in demand from the carrier bartender.
|
||||
/// </summary>
|
||||
public ImmutableList<FCMaterial> Items { get; init; }
|
||||
}
|
||||
}
|
@ -23,5 +23,6 @@ namespace Observatory.Framework.Files.Journal
|
||||
public int VoucherAmount { get; init; }
|
||||
public float Latitude { get; init; }
|
||||
public float Longitude { get; init; }
|
||||
public int BodyID { get; init; }
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,9 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class FCMaterlas : FSDJump
|
||||
{
|
||||
public ulong MarketID { get; init; }
|
||||
public string CarrierName { get; init; }
|
||||
public ulong CarrierID { get; init; }
|
||||
}
|
||||
}
|
@ -5,5 +5,6 @@
|
||||
public int Cost { get; init; }
|
||||
public string DestinationSystem { get; init; }
|
||||
public string DestinationLocation { get; init; }
|
||||
public bool Retreat { get; init; }
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
@ -12,5 +13,7 @@ namespace Observatory.Framework.Files.Journal
|
||||
public int Count { get; init; }
|
||||
public int Price { get; init; }
|
||||
public ulong MarketID { get; init; }
|
||||
public int TotalCount { get; init; }
|
||||
public ImmutableList<MicroResource> MicroResources { get; init; }
|
||||
}
|
||||
}
|
||||
|
12
ObservatoryFramework/Files/ParameterTypes/FCMaterial.cs
Normal file
12
ObservatoryFramework/Files/ParameterTypes/FCMaterial.cs
Normal file
@ -0,0 +1,12 @@
|
||||
namespace Observatory.Framework.Files.ParameterTypes
|
||||
{
|
||||
public class FCMaterial
|
||||
{
|
||||
public ulong Id { get; init; }
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public int Price { get; init; }
|
||||
public int Stock { get; init; }
|
||||
public int Demand { get; init; }
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user