typed-adventureland
Version:
Strong TypeScript declarations for the game AdventureLand
13 lines (12 loc) • 423 B
TypeScript
export type PlaceholderKey = "placeholder" | "placeholder_m";
export interface GPlaceholder {
/** Cost of the item in gold, if an NPC were to sell this item. */
g: number;
ignore: boolean;
/** The full display name of an item. */
name: string;
/** The skin of the item. */
skin: PlaceholderKey;
/** The type of item, `shield`, `weapon`, `gloves`... */
type: "placeholder";
}