2
0
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:
Xjph 2022-06-05 23:09:16 -02:30
parent 2200b94a6c
commit 396a5a9217
6 changed files with 42 additions and 0 deletions

View 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; }
}
}

View File

@ -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; }
}
}

View File

@ -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; }
}
}

View File

@ -5,5 +5,6 @@
public int Cost { get; init; }
public string DestinationSystem { get; init; }
public string DestinationLocation { get; init; }
public bool Retreat { get; init; }
}
}

View File

@ -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; }
}
}

View 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; }
}
}