Removed Rockruff from restricted forms

This commit is contained in:
Wlowscha 2025-08-16 23:50:19 +02:00
parent 4155c43a7c
commit c14c12e312
No known key found for this signature in database
GPG Key ID: 3C8F1AD330565D04

View File

@ -851,7 +851,6 @@ export class FreshStartChallenge extends Challenge {
SpeciesId.ROTOM, SpeciesId.ROTOM,
SpeciesId.MELOETTA, SpeciesId.MELOETTA,
SpeciesId.FROAKIE, SpeciesId.FROAKIE,
SpeciesId.ROCKRUFF,
].includes(speciesId) ].includes(speciesId)
) { ) {
const formMask = (DexAttr.DEFAULT_FORM << 1n) - 1n; // These mons are set to form 0 because they're meant to be unlocks or mid-run form changes const formMask = (DexAttr.DEFAULT_FORM << 1n) - 1n; // These mons are set to form 0 because they're meant to be unlocks or mid-run form changes
@ -890,7 +889,6 @@ export class FreshStartChallenge extends Challenge {
SpeciesId.ROTOM, SpeciesId.ROTOM,
SpeciesId.MELOETTA, SpeciesId.MELOETTA,
SpeciesId.FROAKIE, SpeciesId.FROAKIE,
SpeciesId.ROCKRUFF,
].includes(pokemon.species.speciesId) ].includes(pokemon.species.speciesId)
) { ) {
pokemon.formIndex = 0; // These mons are set to form 0 because they're meant to be unlocks or mid-run form changes pokemon.formIndex = 0; // These mons are set to form 0 because they're meant to be unlocks or mid-run form changes