UNPKG

osrs-tools

Version:

A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information

33 lines 972 B
import { LeaguesSeason } from "./DemonicPact.model"; export declare enum LeagueRegionName { Misthalin = "Misthalin", Karamja = "Karamja", Asgarnia = "Asgarnia", FremennikProvince = "Fremennik Province", Kandarin = "Kandarin", KharidianDesert = "Kharidian Desert", Morytania = "Morytania", Tirannwn = "Tirannwn", Wilderness = "Wilderness", KebosAndKourend = "Kebos and Kourend", Varlamore = "Varlamore" } export interface LeagueRegion { name: LeagueRegionName; wikiUrl: string; isStarterUnlocked: boolean; isTutorialUnlocked: boolean; } export interface RegionUnlockMilestone { unlockNumber: number; tasksRequired?: number; } export interface LeaguesRegionSet { season: LeaguesSeason; displayName: string; source: string; regions: LeagueRegion[]; selectableUnlockMilestones: RegionUnlockMilestone[]; maxSelectableRegions: number; } //# sourceMappingURL=LeaguesRegion.model.d.ts.map