mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-16 21:32:18 +02:00
Add forced grunt encounter and update dialogue
This commit is contained in:
parent
99a9cef292
commit
c610b9fe4a
@ -366,6 +366,8 @@ export const fixedBattles: FixedBattleConfigs = {
|
||||
.setGetTrainerFunc(scene => new Trainer(scene, TrainerType.RIVAL, scene.gameData.gender === PlayerGender.MALE ? TrainerVariant.FEMALE : TrainerVariant.DEFAULT)),
|
||||
[25]: new FixedBattleConfig().setBattleType(BattleType.TRAINER)
|
||||
.setGetTrainerFunc(scene => new Trainer(scene, TrainerType.RIVAL_2, scene.gameData.gender === PlayerGender.MALE ? TrainerVariant.FEMALE : TrainerVariant.DEFAULT)),
|
||||
[35]: new FixedBattleConfig().setBattleType(BattleType.TRAINER)
|
||||
.setGetTrainerFunc(scene => new Trainer(scene, getEvilTeamBattle(scene.evilTeamThisRun, "admin"), TrainerVariant.DEFAULT)),
|
||||
[55]: new FixedBattleConfig().setBattleType(BattleType.TRAINER)
|
||||
.setGetTrainerFunc(scene => new Trainer(scene, TrainerType.RIVAL_3, scene.gameData.gender === PlayerGender.MALE ? TrainerVariant.FEMALE : TrainerVariant.DEFAULT)),
|
||||
[95]: new FixedBattleConfig().setBattleType(BattleType.TRAINER)
|
||||
|
@ -511,7 +511,7 @@ export const trainerTypeDialogue = {
|
||||
[TrainerType.MAXIE_2]: [
|
||||
{
|
||||
encounter: [
|
||||
`Hold it right there.`
|
||||
`do I need salt cure?`
|
||||
],
|
||||
victory: [
|
||||
`I... I lost again?`
|
||||
@ -531,7 +531,7 @@ export const trainerTypeDialogue = {
|
||||
[TrainerType.ARCHIE_2]: [
|
||||
{
|
||||
encounter: [
|
||||
`Hold it right there.`
|
||||
`do I bring soak?`
|
||||
],
|
||||
victory: [
|
||||
`I... I lost again?`
|
||||
@ -591,10 +591,10 @@ export const trainerTypeDialogue = {
|
||||
[TrainerType.LYSANDRE_2]: [
|
||||
{
|
||||
encounter: [
|
||||
`Enough of this.`
|
||||
`Can someone recommend me some good pokemon?`
|
||||
],
|
||||
victory: [
|
||||
`Whaugh!`
|
||||
`Who's a good carry for endless?`
|
||||
]
|
||||
}
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user