Fix Smeargle moveset

pull/14/head
Flashfyre 2023-12-25 20:43:56 -05:00
parent f968d4c5ae
commit 295505ca7f
1 changed files with 8 additions and 0 deletions

View File

@ -1884,6 +1884,14 @@ export class EnemyPokemon extends Pokemon {
generateAndPopulateMoveset(): void { generateAndPopulateMoveset(): void {
switch (true) { switch (true) {
case (this.species.speciesId === Species.SMEARGLE):
this.moveset = [
new PokemonMove(Moves.SKETCH),
new PokemonMove(Moves.SKETCH),
new PokemonMove(Moves.SKETCH),
new PokemonMove(Moves.SKETCH)
];
break;
case (this.species.speciesId === Species.ETERNATUS): case (this.species.speciesId === Species.ETERNATUS):
this.moveset = this.formIndex this.moveset = this.formIndex
? [ ? [