@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
24 lines (23 loc) • 658 B
TypeScript
import type { JournalEvent } from "../../JournalEvent.js";
export interface CommunityGoal extends JournalEvent<"CommunityGoal"> {
CurrentGoals: Array<{
Bonus?: number;
CGID: number;
CurrentTotal: number;
Expiry: string;
IsComplete: boolean;
MarketName: string;
NumContributors: number;
PlayerContribution: number;
PlayerInTopRank: boolean;
PlayerPercentileBand: number;
SystemName: string;
TierReached?: string;
Title: string;
TopRankSize: number;
TopTier?: {
Name: string;
Bonus: string;
};
}>;
}