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

9 lines 859 B
/** * Hunter Rumours Module * Complete Hunters' Rumours system including guild hunters, rumour data, and utilities. * Reference: https://oldschool.runescape.wiki/w/Hunters%27_Rumours */ export { HuntingMethod, RumourTier, HunterLootSackType, GuildHunterName, DROP_RATES, TIER_XP_MODIFIER, HUNTER_LOOT_SACK_INFO, RUMOUR_MILESTONE_UNLOCKS, calculateRumourExperience, createHunterLevelRequirement, getMilestoneUnlocks, openHuntersLootSack, } from './HunterRumour'; export type { DropRateInfo, HunterRumour, GuildHunter, HunterLootSackInfo, RumourMilestoneUnlock, OpenLootSackResult, } from './HunterRumour'; export { ALL_RUMOURS, ALL_GUILD_HUNTERS, Gilman, Cervus, Ornus, Aco, Teco, Wolf, getGuildHunterByName, getGuildHuntersByTier, getAvailableRumours, getRumourByCreature, getHuntersForRumour, } from './HunterRumours'; //# sourceMappingURL=index.d.ts.map