mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-25 16:26:25 +00:00
Fix Smeargle moveset
This commit is contained in:
parent
f968d4c5ae
commit
295505ca7f
@ -1884,6 +1884,14 @@ export class EnemyPokemon extends Pokemon {
|
||||
|
||||
generateAndPopulateMoveset(): void {
|
||||
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):
|
||||
this.moveset = this.formIndex
|
||||
? [
|
||||
|
Loading…
Reference in New Issue
Block a user