UNPKG

typed-adventureland

Version:
7 lines (6 loc) 535 B
import type { ItemKey } from "../items/index"; export type DismantleKey = "bowofthedead" | "bronzeingot" | "daggerofthedead" | "essenceoffire" | "essenceoffrost" | "essenceoflife" | "essenceofnature" | "fireblade" | "firebow" | "firestaff" | "firestars" | "goldenegg" | "goldingot" | "lostearring" | "maceofthedead" | "molesteeth" | "platinumingot" | "pmaceofthedead" | "spearofthedead" | "staffofthedead" | "swordofthedead"; export interface GDismantle { items: Array<[quantity: number, item: ItemKey]>; cost: number; }