diff options
Diffstat (limited to 'src/constants.ts')
-rw-r--r-- | src/constants.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/constants.ts b/src/constants.ts index 48f9619..9699e57 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -227,6 +227,14 @@ export async function fetchMinions(): Promise<string[]> { return await constants.fetchJSONConstant('minions.json') } +export async function fetchSkillXp(): Promise<number[]> { + return await constants.fetchJSONConstant('manual/skill_xp.json') +} + +export async function fetchSkillXpEasier(): Promise<number[]> { + return await constants.fetchJSONConstant('manual/skill_xp_easier.json') +} + /** Add skills to skyblock-constants. This has caching so it's fine to call many times */ export async function addMinions(addingMinions: string[]): Promise<void> { await constants.addJSONConstants('minions.json', addingMinions, 'minion') |