Fix Smeargle moveset
parent
f968d4c5ae
commit
295505ca7f
|
@ -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
|
||||||
? [
|
? [
|
||||||
|
|
Loading…
Reference in New Issue