Interface CodexEntry

Written when a new discovery is added to the Codex.

interface CodexEntry {
    BodyID?: number;
    Category: string;
    Category_Localised: string;
    EntryID: number;
    event: "CodexEntry";
    IsNewEntry?: boolean;
    Latitude?: number;
    Longitude?: number;
    Name: string;
    Name_Localised: string;
    NearestDestination?: string;
    NearestDestination_Localised?: string;
    NewTraitsDiscovered?: boolean;
    Region: string;
    Region_Localised: string;
    SubCategory: string;
    SubCategory_Localised: string;
    System: string;
    SystemAddress: number;
    timestamp: string;
    Traits?: string[];
    VoucherAmount?: number;
}

Hierarchy (View Summary)

Properties

BodyID?: number
Category: string
Category_Localised: string
EntryID: number
event: "CodexEntry"

The type of event.

IsNewEntry?: boolean
Latitude?: number
Longitude?: number
Name: string
Name_Localised: string
NearestDestination?: string

Added if within 50km of a location listed in the navigation panel.

NearestDestination_Localised?: string
NewTraitsDiscovered?: boolean
Region: string
Region_Localised: string
SubCategory: string
SubCategory_Localised: string
System: string
SystemAddress: number
timestamp: string

The time in GMT, ISO 8601.

Traits?: string[]
VoucherAmount?: number