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

20 lines 679 B
/** * Slayer Unlocks Data * All unlock rewards available in the game * Reference: https://oldschool.runescape.wiki/w/Slayer#Rewards */ import { SlayerUnlock } from './SlayerUnlock'; export declare const SLAYER_UNLOCKS: SlayerUnlock[]; /** * Get an unlock by name (case insensitive) */ export declare function getUnlockByName(name: string): SlayerUnlock | undefined; /** * Get all unlocks within a cost range */ export declare function getUnlocksByCostRange(minCost: number, maxCost: number): SlayerUnlock[]; /** * Get the total cost of multiple unlocks */ export declare function calculateUnlocksCost(names: string[]): number; //# sourceMappingURL=unlocks.data.d.ts.map