From 3df44ea8993b677d03adcaf7a8ba595391d734c2 Mon Sep 17 00:00:00 2001 From: xsn34kzx Date: Sat, 2 Aug 2025 23:18:25 -0400 Subject: [PATCH] Adjust Nuzlocke Achievement to Include Fresh Start --- src/system/achv.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/system/achv.ts b/src/system/achv.ts index 195d458c59d..62ee389a2ad 100644 --- a/src/system/achv.ts +++ b/src/system/achv.ts @@ -933,7 +933,8 @@ export const achvs = { c => c instanceof LimitedCatchChallenge && c.value > 0 && - globalScene.gameMode.challenges.some(c => c.id === Challenges.PERMANENT_FAINT && c.value > 0), + globalScene.gameMode.challenges.some(c => c.id === Challenges.PERMANENT_FAINT && c.value > 0) && + globalScene.gameMode.challenges.some(c => c.id === Challenges.FRESH_START && c.value > 0), ), BREEDERS_IN_SPACE: new Achv("BREEDERS_IN_SPACE", "", "BREEDERS_IN_SPACE.description", "moon_stone", 50).setSecret(), };