typed-adventureland
Version:
Strong TypeScript declarations for the game AdventureLand
13 lines (12 loc) • 529 B
TypeScript
import type { ItemKey } from "../items";
import type { TitleKey } from "../titles/Titles";
export type AchievementKey = "1000boss" | "100boss" | "abtesting" | "discoverlair" | "festive" | "firehazard" | "gooped" | "lucky" | "monsterhunter" | "reach40" | "reach50" | "reach60" | "reach70" | "reach80" | "reach90" | "stomped" | "upgrade10";
export interface GAchievement {
count?: number;
explanation?: string;
name: string;
title?: TitleKey;
rr?: number;
shells?: number;
item?: ItemKey;
}