mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-20 16:42:45 +02:00
Deleted the constraints of the auto heal challenge from the Mystery Ecounters
Signed-off-by: Matilde Simões <matilde.simoes@tecnico.ulisboa.pt> Co-authored-by: Fuad Ali <fuad.ali@tecnico.ulisboa.pt>
This commit is contained in:
parent
f57e96b7ea
commit
b9cc1843d9
@ -22,7 +22,6 @@ import { EggTier } from "#enums/egg-type";
|
||||
import { ModifierTier } from "#enums/modifier-tier";
|
||||
import { modifierTypes } from "#app/data/data-lists";
|
||||
import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/constants";
|
||||
import { Challenges } from "#enums/challenges";
|
||||
|
||||
/** the i18n namespace for the encounter */
|
||||
const namespace = "mysteryEncounters/aTrainersTest";
|
||||
@ -35,7 +34,6 @@ const namespace = "mysteryEncounters/aTrainersTest";
|
||||
export const ATrainersTestEncounter: MysteryEncounter = MysteryEncounterBuilder.withEncounterType(
|
||||
MysteryEncounterType.A_TRAINERS_TEST,
|
||||
)
|
||||
.withDisallowedChallenges(Challenges.NO_AUTO_HEAL)
|
||||
.withEncounterTier(MysteryEncounterTier.ROGUE)
|
||||
.withSceneWaveRangeRequirement(100, CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES[1])
|
||||
.withIntroSpriteConfigs([]) // These are set in onInit()
|
||||
|
@ -31,7 +31,6 @@ import { BerryType } from "#enums/berry-type";
|
||||
import { Stat } from "#enums/stat";
|
||||
import { CustomPokemonData } from "#app/data/custom-pokemon-data";
|
||||
import { randSeedInt } from "#app/utils/common";
|
||||
import { Challenges } from "#enums/challenges";
|
||||
|
||||
/** i18n namespace for the encounter */
|
||||
const namespace = "mysteryEncounters/slumberingSnorlax";
|
||||
@ -44,7 +43,6 @@ const namespace = "mysteryEncounters/slumberingSnorlax";
|
||||
export const SlumberingSnorlaxEncounter: MysteryEncounter = MysteryEncounterBuilder.withEncounterType(
|
||||
MysteryEncounterType.SLUMBERING_SNORLAX,
|
||||
)
|
||||
.withDisallowedChallenges(Challenges.NO_AUTO_HEAL)
|
||||
.withEncounterTier(MysteryEncounterTier.GREAT)
|
||||
.withSceneWaveRangeRequirement(15, 150)
|
||||
.withCatchAllowed(true)
|
||||
|
@ -31,7 +31,6 @@ import i18next from "i18next";
|
||||
import { ModifierTier } from "#enums/modifier-tier";
|
||||
import { CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES } from "#app/constants";
|
||||
import { BattlerTagType } from "#enums/battler-tag-type";
|
||||
import { Challenges } from "#enums/challenges";
|
||||
|
||||
/** the i18n namespace for the encounter */
|
||||
const namespace = "mysteryEncounters/theWinstrateChallenge";
|
||||
@ -44,7 +43,6 @@ const namespace = "mysteryEncounters/theWinstrateChallenge";
|
||||
export const TheWinstrateChallengeEncounter: MysteryEncounter = MysteryEncounterBuilder.withEncounterType(
|
||||
MysteryEncounterType.THE_WINSTRATE_CHALLENGE,
|
||||
)
|
||||
.withDisallowedChallenges(Challenges.NO_AUTO_HEAL)
|
||||
.withEncounterTier(MysteryEncounterTier.ROGUE)
|
||||
.withSceneWaveRangeRequirement(100, CLASSIC_MODE_MYSTERY_ENCOUNTER_WAVES[1])
|
||||
.withIntroSpriteConfigs([
|
||||
|
Loading…
Reference in New Issue
Block a user