From 4f6f17e63e252044a0a51685e7625a905a18fe96 Mon Sep 17 00:00:00 2001 From: Flashfyre Date: Sun, 12 Nov 2023 22:45:34 -0500 Subject: [PATCH] Fix Lv1000 achievement set to Lv100 --- src/system/achv.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/achv.ts b/src/system/achv.ts index 588c6c43015..275a9f198c8 100644 --- a/src/system/achv.ts +++ b/src/system/achv.ts @@ -113,7 +113,7 @@ export const achvs = { _10000_HEAL: new HealAchv('Recovery Master', 10000, 'max_potion', 100).setSecret(true), LV_100: new LevelAchv('But Wait, There\'s More!', 50, 'rare_candy', 25).setSecret(), LV_250: new LevelAchv('Elite', 250, 'rarer_candy', 50).setSecret(true), - LV_1000: new LevelAchv('To Go Even Further Beyond', 100, 'candy_jar', 400).setSecret(true), + LV_1000: new LevelAchv('To Go Even Further Beyond', 1000, 'candy_jar', 100).setSecret(true), TRANSFER_MAX_BATTLE_STAT: new Achv('Teamwork', 'Baton pass to another party member with at least one stat maxed out', 'stick', 20), SPLICE: new Achv('Infinite Fusion', 'Splice two Pokémon together with DNA Splicers', 'dna_splicers', 10), MINI_BLACK_HOLE: new ModifierAchv('A Hole Lot of Items', 'Acquire a Mini Black Hole', 'mini_black_hole', 25, modifier => modifier instanceof TurnHeldItemTransferModifier).setSecret(),