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

16 lines 767 B
/** * Slayer Tasks Module * Exports all task files and utilities */ export * from "../task/DuradelTasks"; export * from "../task/KonarTasks"; export * from "../task/NieveTasks"; export * from "../task/ChaelderTasks"; export * from "../task/KrystiliaTasks"; export * from "../task/MazchnaTasks"; export * from "../task/SpriaTasks"; export * from "../task/TurealTasks"; export * from "../task/VannakaTasks"; export { SLAYER_EXP_RATES, STANDARD_TASK_WEIGHTS, MonsterType, TASK_LOCATIONS, TASK_QUANTITY_PRESETS, EXTENDED_QUANTITY_PRESETS } from "./constants"; export { initializeMastersRegistry, getMasterByName, getAllMasters, getMastersByMinimumLevel, getMastersByProgression, getRandomMasterForLevel } from "../masters/registry"; //# sourceMappingURL=index.d.ts.map