mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-07-01 08:23:42 -04:00
Initial Commit
This commit is contained in:
@ -1,10 +1,6 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
public class BackPack : JournalBase
|
||||
{
|
||||
public class BackPack : JournalBase
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
@ -1,11 +1,10 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
using System.Collections.Immutable;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class BackpackChange : JournalBase
|
||||
{
|
||||
public class BackpackChange : JournalBase
|
||||
{
|
||||
public ImmutableList<BackpackItemChange> Added { get; init; }
|
||||
public ImmutableList<BackpackItemChange> Removed { get; init; }
|
||||
}
|
||||
}
|
||||
public ImmutableList<BackpackItemChange> Added { get; init; }
|
||||
public ImmutableList<BackpackItemChange> Removed { get; init; }
|
||||
}
|
@ -1,13 +1,12 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
using System.Collections.Immutable;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class BackpackMaterials : JournalBase
|
||||
{
|
||||
public class BackpackMaterials : JournalBase
|
||||
{
|
||||
public ImmutableList<BackpackItem> Items { get; init; }
|
||||
public ImmutableList<BackpackItem> Components { get; init; }
|
||||
public ImmutableList<BackpackItem> Consumables { get; init; }
|
||||
public ImmutableList<BackpackItem> Data { get; init; }
|
||||
}
|
||||
}
|
||||
public ImmutableList<BackpackItem> Items { get; init; }
|
||||
public ImmutableList<BackpackItem> Components { get; init; }
|
||||
public ImmutableList<BackpackItem> Consumables { get; init; }
|
||||
public ImmutableList<BackpackItem> Data { get; init; }
|
||||
}
|
@ -1,6 +1,5 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class BookDropship : BookTaxi
|
||||
{
|
||||
public class BookDropship : BookTaxi
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,10 +1,9 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class BookTaxi : JournalBase
|
||||
{
|
||||
public class BookTaxi : JournalBase
|
||||
{
|
||||
public int Cost { get; init; }
|
||||
public string DestinationSystem { get; init; }
|
||||
public string DestinationLocation { get; init; }
|
||||
public bool Retreat { get; init; }
|
||||
}
|
||||
}
|
||||
public int Cost { get; init; }
|
||||
public string DestinationSystem { get; init; }
|
||||
public string DestinationLocation { get; init; }
|
||||
public bool Retreat { get; init; }
|
||||
}
|
@ -1,19 +1,18 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
using System.Collections.Immutable;
|
||||
using System.Text.Json.Serialization;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class BuyMicroResources : JournalBase
|
||||
{
|
||||
public class BuyMicroResources : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public MicroCategory Category { get; init; }
|
||||
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; }
|
||||
}
|
||||
}
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public MicroCategory Category { get; init; }
|
||||
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; }
|
||||
}
|
@ -1,10 +1,9 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class BuySuit : JournalBase
|
||||
{
|
||||
public class BuySuit : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public int Price { get; init; }
|
||||
public ulong SuitID { get; init; }
|
||||
}
|
||||
}
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public int Price { get; init; }
|
||||
public ulong SuitID { get; init; }
|
||||
}
|
@ -1,10 +1,9 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class BuyWeapon : JournalBase
|
||||
{
|
||||
public class BuyWeapon : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public int Price { get; init; }
|
||||
public ulong SuitModuleID { get; init; }
|
||||
}
|
||||
}
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public int Price { get; init; }
|
||||
public ulong SuitModuleID { get; init; }
|
||||
}
|
@ -1,6 +1,5 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class CancelDropship : CancelTaxi
|
||||
{
|
||||
public class CancelDropship : CancelTaxi
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,7 +1,6 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class CancelTaxi : JournalBase
|
||||
{
|
||||
public class CancelTaxi : JournalBase
|
||||
{
|
||||
public int Refund { get; init; }
|
||||
}
|
||||
}
|
||||
public int Refund { get; init; }
|
||||
}
|
@ -1,12 +1,11 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class CollectItems : JournalBase
|
||||
{
|
||||
public class CollectItems : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public string Type { get; init; }
|
||||
public ulong OwnerID { get; init; }
|
||||
public int Count { get; init; }
|
||||
public bool Stolen { get; init; }
|
||||
}
|
||||
}
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public string Type { get; init; }
|
||||
public ulong OwnerID { get; init; }
|
||||
public int Count { get; init; }
|
||||
public bool Stolen { get; init; }
|
||||
}
|
@ -1,11 +1,10 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
using System.Collections.Immutable;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class CreateSuitLoadout : DeleteSuitLoadout
|
||||
{
|
||||
public class CreateSuitLoadout : DeleteSuitLoadout
|
||||
{
|
||||
public ImmutableList<SuitModule> Modules { get; init; }
|
||||
public ImmutableList<string> SuitMods { get; init; }
|
||||
}
|
||||
}
|
||||
public ImmutableList<SuitModule> Modules { get; init; }
|
||||
public ImmutableList<string> SuitMods { get; init; }
|
||||
}
|
@ -1,11 +1,10 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class DeleteSuitLoadout : JournalBase
|
||||
{
|
||||
public class DeleteSuitLoadout : JournalBase
|
||||
{
|
||||
public ulong SuitID { get; init; }
|
||||
public string SuitName { get; init; }
|
||||
public string SuitName_Localised { get; init; }
|
||||
public ulong LoadoutID { get; init; }
|
||||
public string LoadoutName { get; init; }
|
||||
}
|
||||
}
|
||||
public ulong SuitID { get; init; }
|
||||
public string SuitName { get; init; }
|
||||
public string SuitName_Localised { get; init; }
|
||||
public ulong LoadoutID { get; init; }
|
||||
public string LoadoutName { get; init; }
|
||||
}
|
@ -1,28 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Immutable;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
public class Disembark : JournalBase
|
||||
{
|
||||
public class Disembark : JournalBase
|
||||
{
|
||||
public bool SRV { get; init; }
|
||||
public bool Taxi { get; init; }
|
||||
public bool Multicrew { get; init; }
|
||||
public ulong ID { get; init; }
|
||||
public string StarSystem { get; init; }
|
||||
public ulong SystemAddress { get; init; }
|
||||
public string Body { get; init; }
|
||||
public int BodyID { get; init; }
|
||||
public bool OnStation { get; init; }
|
||||
public bool OnPlanet { get; init; }
|
||||
/// <summary>
|
||||
/// Name of the station at which this event occurred.
|
||||
/// </summary>
|
||||
public string StationName { get; init; }
|
||||
public string StationType { get; init; }
|
||||
public ulong MarketID { get; init; }
|
||||
}
|
||||
}
|
||||
public bool SRV { get; init; }
|
||||
public bool Taxi { get; init; }
|
||||
public bool Multicrew { get; init; }
|
||||
public ulong ID { get; init; }
|
||||
public string StarSystem { get; init; }
|
||||
public ulong SystemAddress { get; init; }
|
||||
public string Body { get; init; }
|
||||
public int BodyID { get; init; }
|
||||
public bool OnStation { get; init; }
|
||||
public bool OnPlanet { get; init; }
|
||||
/// <summary>
|
||||
/// Name of the station at which this event occurred.
|
||||
/// </summary>
|
||||
public string StationName { get; init; }
|
||||
public string StationType { get; init; }
|
||||
public ulong MarketID { get; init; }
|
||||
}
|
@ -1,6 +1,5 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class DropItems : CollectItems
|
||||
{
|
||||
public class DropItems : CollectItems
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,12 +1,11 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class DropShipDeploy : JournalBase
|
||||
{
|
||||
public class DropShipDeploy : JournalBase
|
||||
{
|
||||
public string StarSystem { get; init; }
|
||||
public ulong SystemAddress { get; init; }
|
||||
public string Body { get; init; }
|
||||
public int BodyID { get; init; }
|
||||
public bool OnStation { get; init; }
|
||||
public bool OnPlanet { get; init; }
|
||||
}
|
||||
}
|
||||
public string StarSystem { get; init; }
|
||||
public ulong SystemAddress { get; init; }
|
||||
public string Body { get; init; }
|
||||
public int BodyID { get; init; }
|
||||
public bool OnStation { get; init; }
|
||||
public bool OnPlanet { get; init; }
|
||||
}
|
@ -1,6 +1,5 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class Embark : Disembark
|
||||
{
|
||||
public class Embark : Disembark
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,9 +1,8 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class FCMaterials : JournalBase
|
||||
{
|
||||
public class FCMaterials : JournalBase
|
||||
{
|
||||
public ulong MarketID { get; init; }
|
||||
public string CarrierName { get; init; }
|
||||
public string CarrierID { get; init; }
|
||||
}
|
||||
public ulong MarketID { get; init; }
|
||||
public string CarrierName { get; init; }
|
||||
public string CarrierID { get; init; }
|
||||
}
|
@ -1,15 +1,14 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class LoadoutEquipModule : JournalBase
|
||||
{
|
||||
public class LoadoutEquipModule : JournalBase
|
||||
{
|
||||
public ulong SuitID { get; init; }
|
||||
public string SuitName { get; init; }
|
||||
public string SuitName_Localised { get; init; }
|
||||
public string SlotName { get; init; }
|
||||
public ulong LoadoutID { get; init; }
|
||||
public string LoadoutName { get; init; }
|
||||
public string ModuleName { get; init; }
|
||||
public string ModuleName_Localised { get; init; }
|
||||
public ulong SuitModuleID { get; init; }
|
||||
}
|
||||
}
|
||||
public ulong SuitID { get; init; }
|
||||
public string SuitName { get; init; }
|
||||
public string SuitName_Localised { get; init; }
|
||||
public string SlotName { get; init; }
|
||||
public ulong LoadoutID { get; init; }
|
||||
public string LoadoutName { get; init; }
|
||||
public string ModuleName { get; init; }
|
||||
public string ModuleName_Localised { get; init; }
|
||||
public ulong SuitModuleID { get; init; }
|
||||
}
|
@ -1,6 +1,5 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class LoadoutRemoveModule : LoadoutEquipModule
|
||||
{
|
||||
public class LoadoutRemoveModule : LoadoutEquipModule
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,10 +1,9 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class RenameSuitLoadout : JournalBase
|
||||
{
|
||||
public class RenameSuitLoadout : JournalBase
|
||||
{
|
||||
public ulong SuitID { get; init; }
|
||||
public string SuitName { get; init; }
|
||||
public ulong LoadoutID { get; init; }
|
||||
public string LoadoutName { get; init; }
|
||||
}
|
||||
}
|
||||
public ulong SuitID { get; init; }
|
||||
public string SuitName { get; init; }
|
||||
public ulong LoadoutID { get; init; }
|
||||
public string LoadoutName { get; init; }
|
||||
}
|
@ -1,19 +1,18 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Text.Json.Serialization;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class ScanOrganic : JournalBase
|
||||
{
|
||||
public class ScanOrganic : JournalBase
|
||||
{
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public ScanOrganicType ScanType { get; init; }
|
||||
public string Genus { get; init; }
|
||||
public string Genus_Localised { get; init; }
|
||||
public string Species { get; init; }
|
||||
public string Species_Localised { get; init; }
|
||||
public string Variant { get; init; }
|
||||
public string Variant_Localised { get; init; }
|
||||
public ulong SystemAddress { get; init; }
|
||||
public int Body { get; init; }
|
||||
}
|
||||
}
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public ScanOrganicType ScanType { get; init; }
|
||||
public string Genus { get; init; }
|
||||
public string Genus_Localised { get; init; }
|
||||
public string Species { get; init; }
|
||||
public string Species_Localised { get; init; }
|
||||
public string Variant { get; init; }
|
||||
public string Variant_Localised { get; init; }
|
||||
public ulong SystemAddress { get; init; }
|
||||
public int Body { get; init; }
|
||||
}
|
@ -1,12 +1,11 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
using System.Collections.Immutable;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class SellMicroResources : JournalBase
|
||||
{
|
||||
public class SellMicroResources : JournalBase
|
||||
{
|
||||
public ImmutableList<MicroResource> MicroResources { get; init; }
|
||||
public int Price { get; init; }
|
||||
public ulong MarketID { get; init; }
|
||||
}
|
||||
}
|
||||
public ImmutableList<MicroResource> MicroResources { get; init; }
|
||||
public int Price { get; init; }
|
||||
public ulong MarketID { get; init; }
|
||||
}
|
@ -1,11 +1,10 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
using System.Collections.Immutable;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class SellOrganicData : JournalBase
|
||||
{
|
||||
public class SellOrganicData : JournalBase
|
||||
{
|
||||
public ulong MarketID { get; init; }
|
||||
public ImmutableList<BioData> BioData { get; init; }
|
||||
}
|
||||
}
|
||||
public ulong MarketID { get; init; }
|
||||
public ImmutableList<BioData> BioData { get; init; }
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class SellSuit : BuySuit
|
||||
{ }
|
||||
}
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class SellSuit : BuySuit
|
||||
{ }
|
@ -1,6 +1,5 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class SellWeapon : BuyWeapon
|
||||
{
|
||||
public class SellWeapon : BuyWeapon
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,13 +1,12 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
using System.Collections.Immutable;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class ShipLockerMaterials : JournalBase
|
||||
{
|
||||
public class ShipLockerMaterials : JournalBase
|
||||
{
|
||||
public ImmutableList<BackpackItem> Items { get; init; }
|
||||
public ImmutableList<BackpackItem> Components { get; init; }
|
||||
public ImmutableList<BackpackItem> Consumables { get; init; }
|
||||
public ImmutableList<BackpackItem> Data { get; init; }
|
||||
}
|
||||
}
|
||||
public ImmutableList<BackpackItem> Items { get; init; }
|
||||
public ImmutableList<BackpackItem> Components { get; init; }
|
||||
public ImmutableList<BackpackItem> Consumables { get; init; }
|
||||
public ImmutableList<BackpackItem> Data { get; init; }
|
||||
}
|
@ -1,5 +1,4 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
{
|
||||
public class SuitLoadout : CreateSuitLoadout
|
||||
{ }
|
||||
}
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class SuitLoadout : CreateSuitLoadout
|
||||
{ }
|
@ -1,6 +1,5 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class SwitchSuitLoadout : CreateSuitLoadout
|
||||
{
|
||||
public class SwitchSuitLoadout : CreateSuitLoadout
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
@ -1,16 +1,15 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
using System.Collections.Immutable;
|
||||
using System.Text.Json.Serialization;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class TradeMicroResources : JournalBase
|
||||
{
|
||||
public class TradeMicroResources : JournalBase
|
||||
{
|
||||
public ImmutableList<MicroResource> Offered { get; init; }
|
||||
public string Received { get; init; }
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public MicroCategory Category { get; init; }
|
||||
public int Count { get; init; }
|
||||
public ulong MarketID { get; init; }
|
||||
}
|
||||
}
|
||||
public ImmutableList<MicroResource> Offered { get; init; }
|
||||
public string Received { get; init; }
|
||||
[JsonConverter(typeof(JsonStringEnumConverter))]
|
||||
public MicroCategory Category { get; init; }
|
||||
public int Count { get; init; }
|
||||
public ulong MarketID { get; init; }
|
||||
}
|
@ -1,10 +1,9 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
using System.Collections.Immutable;
|
||||
using System.Collections.Immutable;
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class TransferMicroResources : JournalBase
|
||||
{
|
||||
public class TransferMicroResources : JournalBase
|
||||
{
|
||||
public ImmutableList<MicroTransfer> Transfers { get; init; }
|
||||
}
|
||||
}
|
||||
public ImmutableList<MicroTransfer> Transfers { get; init; }
|
||||
}
|
@ -1,14 +1,13 @@
|
||||
using Observatory.Framework.Files.ParameterTypes;
|
||||
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class UpgradeSuit : JournalBase
|
||||
{
|
||||
public class UpgradeSuit : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public ulong SuitID { get; init; }
|
||||
public int Class { get; init; }
|
||||
public int Cost { get; init; }
|
||||
public Material[] Resources { get; init; }
|
||||
}
|
||||
}
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public ulong SuitID { get; init; }
|
||||
public int Class { get; init; }
|
||||
public int Cost { get; init; }
|
||||
public Material[] Resources { get; init; }
|
||||
}
|
@ -1,11 +1,10 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class UpgradeWeapon : JournalBase
|
||||
{
|
||||
public class UpgradeWeapon : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public ulong SuitModuleID { get; init; }
|
||||
public int Class { get; init; }
|
||||
public int Cost { get; init; }
|
||||
}
|
||||
}
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public ulong SuitModuleID { get; init; }
|
||||
public int Class { get; init; }
|
||||
public int Cost { get; init; }
|
||||
}
|
@ -1,9 +1,8 @@
|
||||
namespace Observatory.Framework.Files.Journal
|
||||
namespace Observatory.Framework.Files.Journal.Odyssey;
|
||||
|
||||
public class UseConsumable : JournalBase
|
||||
{
|
||||
public class UseConsumable : JournalBase
|
||||
{
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public string Type { get; init; }
|
||||
}
|
||||
}
|
||||
public string Name { get; init; }
|
||||
public string Name_Localised { get; init; }
|
||||
public string Type { get; init; }
|
||||
}
|
Reference in New Issue
Block a user