mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-08-20 06:19:29 +02:00
Remove Pika/Eevee forms from Trainers before wave 30, and BB Gren
This commit is contained in:
parent
0c521bbe08
commit
b52fda3632
@ -1397,10 +1397,19 @@ export default class BattleScene extends SceneBase {
|
|||||||
case Species.PALDEA_TAUROS:
|
case Species.PALDEA_TAUROS:
|
||||||
return Utils.randSeedInt(species.forms.length);
|
return Utils.randSeedInt(species.forms.length);
|
||||||
case Species.PIKACHU:
|
case Species.PIKACHU:
|
||||||
|
if (this.currentBattle.battleType === BattleType.TRAINER && this.currentBattle.waveIndex < 30) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
return Utils.randSeedInt(8);
|
return Utils.randSeedInt(8);
|
||||||
case Species.EEVEE:
|
case Species.EEVEE:
|
||||||
|
if (this.currentBattle.battleType === BattleType.TRAINER && this.currentBattle.waveIndex < 30) {
|
||||||
|
return 0; // No Partner Eevee for Wave 12 Preschoolers
|
||||||
|
}
|
||||||
return Utils.randSeedInt(2);
|
return Utils.randSeedInt(2);
|
||||||
case Species.GRENINJA:
|
case Species.GRENINJA:
|
||||||
|
if (this.currentBattle.battleType === BattleType.TRAINER) {
|
||||||
|
return 0; // Don't give trainers Battle Bond Greninja
|
||||||
|
}
|
||||||
return Utils.randSeedInt(2);
|
return Utils.randSeedInt(2);
|
||||||
case Species.ZYGARDE:
|
case Species.ZYGARDE:
|
||||||
return Utils.randSeedInt(4);
|
return Utils.randSeedInt(4);
|
||||||
|
Loading…
Reference in New Issue
Block a user