using System.Collections.Immutable; namespace Observatory.Framework.Files.Journal.Exploration; /// /// Event generated when an item in the codex is scanned. /// public class CodexEntry : JournalBase { public override string Event => "CodexEntry"; /// /// Unique ID of the entry. /// public ulong EntryID { get; init; } /// /// Name of the item scanned. /// public string Name { get; init; } /// /// Localised name of the item scanned. /// public string Name_Localised { get; init; } /// /// Codex sub category of the item scanned. /// public string SubCategory { get; init; } /// /// Localised sub category name of the item scanned. /// public string SubCategory_Localised { get; init; } /// /// Codex category of the item scanned. /// public string Category { get; init; } /// /// Localised category name of the item scanned. /// public string Category_Localised { get; init; } /// /// Codex region the scan occured in. /// public string Region { get; init; } /// /// Localised name of the region. /// public string Region_Localised { get; init; } /// /// Name of the system in which the scan occured. /// public string System { get; init; } /// /// Unique ID of the system in which the scan occured. /// public ulong SystemAddress { get; init; } /// /// Name of the nearest surface signal. /// public string NearestDestination { get; init; } /// /// Localised name of hte nearest surface signal. /// public string NearestDestination_Localised { get; init; } /// /// Indicator that this codex entry hasn't been previously scanned by the CMDR. /// public bool IsNewEntry { get; init; } /// /// Indicator that htis codex entry has a trait not previously seen by the CMDR. /// public bool NewTraitsDiscovered { get; init; } /// /// List of trais of the scanned item. /// public ICollection Traits { get; init; } /// /// Value of the codex entry when sold to Universal Cartographics. /// public int VoucherAmount { get; init; } /// /// Surface latitude where the scan occured. /// public float Latitude { get; init; } /// /// Surface longitude where the scan occured. /// public float Longitude { get; init; } /// /// Body ID of the system body where the scan occured. /// public int BodyID { get; init; } }