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

13 lines (12 loc) 696 B
/** * Represents a location where a rumour can be found in Gielinor. * Each location has a name and a corresponding wiki URL for more information. This class is used to provide players with details about where they can find specific rumours within the guild, helping them to navigate and complete their tasks more efficiently. */ export class RumourLocation { name; // The name of the location where the rumour can be found. wikiUrl; // A URL to the RuneScape Wiki page that provides more information about the location, including how to access it and any relevant details for players. constructor(name, wikiUrl) { this.name = name; this.wikiUrl = wikiUrl; } }