Interface EngineerCraft

Base interface shared by all journal event types.

interface EngineerCraft {
    ApplyExperimentalEffect?: string;
    Blueprint?: string;
    BlueprintID?: number;
    BlueprintName?: string;
    Engineer: string;
    EngineerID?: number;
    ExperimentalEffect?: string;
    ExperimentalEffect_Localised?: string;
    Ingredients: {
        Count: number;
        Name: string;
        Name_Localised?: string;
    }[];
    Level: number;
    Modifiers?: {
        Label: string;
        LessIsGood?: number;
        OriginalValue?: number;
        Value?: number;
        ValueStr?: string;
        ValueStr_Localised?: string;
    }[];
    Module?: string;
    Quality?: number;
    Slot?: string;
    event: "EngineerCraft";
    timestamp: string;
}

Hierarchy (view full)

Properties

ApplyExperimentalEffect?: string
Blueprint?: string
BlueprintID?: number
BlueprintName?: string
Engineer: string
EngineerID?: number
ExperimentalEffect?: string
ExperimentalEffect_Localised?: string
Ingredients: {
    Count: number;
    Name: string;
    Name_Localised?: string;
}[]

Type declaration

  • Count: number
  • Name: string
  • Optional Name_Localised?: string
Level: number
Modifiers?: {
    Label: string;
    LessIsGood?: number;
    OriginalValue?: number;
    Value?: number;
    ValueStr?: string;
    ValueStr_Localised?: string;
}[]

Type declaration

  • Label: string
  • Optional LessIsGood?: number
  • Optional OriginalValue?: number
  • Optional Value?: number
  • Optional ValueStr?: string
  • Optional ValueStr_Localised?: string
Module?: string
Quality?: number
Slot?: string
event: "EngineerCraft"

The type of event.

timestamp: string

The time in GMT, ISO 8601.