osrs-tools
Version:
A comprehensive TypeScript library for Old School RuneScape (OSRS) data and utilities, including quest data, skill requirements, and game item information
32 lines • 728 B
TypeScript
/**
* Quest difficulty levels in OSRS
*/
export declare enum QuestDifficulty {
Novice = "Novice",
Intermediate = "Intermediate",
Experienced = "Experienced",
Master = "Master",
Grandmaster = "Grandmaster"
}
/**
* Quest length categories in OSRS
*/
export declare enum QuestLength {
VeryShort = "Very short",
Short = "Short",
ShortMedium = "Short-Medium",
Medium = "Medium",
MediumLong = "Medium-Long",
Long = "Long",
VeryLong = "Very long"
}
/**
* Current status of a quest for a player
*/
export declare enum QuestStatus {
NotStarted = "NotStarted",
InProgress = "InProgress",
Completed = "Completed",
Failed = "Failed"
}
//# sourceMappingURL=enums.d.ts.map