mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-24 06:17:40 -04:00
Fix Smeargle moveset
This commit is contained in:
parent
f968d4c5ae
commit
295505ca7f
1 changed files with 8 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue