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

19 lines (18 loc) 802 B
/** * Slayer Tasks Module * Exports all task files and utilities */ // Task data exports 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"; // Constants and utilities export { SLAYER_EXP_RATES, STANDARD_TASK_WEIGHTS, MonsterType, TASK_LOCATIONS, TASK_QUANTITY_PRESETS, EXTENDED_QUANTITY_PRESETS } from "./constants"; // Registry utilities export { initializeMastersRegistry, getMasterByName, getAllMasters, getMastersByMinimumLevel, getMastersByProgression, getRandomMasterForLevel } from "../masters/registry";