mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-17 22:40:59 +00:00
[Bug] Cosplay Pikachu and Rotom forms not starting with signature moves (#3365)
Changed the level of the signature moves for Cosplay Pikachu and Rotom forms to be 1 instead of 0.
This commit is contained in:
parent
6a58d1b928
commit
1ec7190aba
@ -18666,7 +18666,7 @@ export const pokemonFormLevelMoves: PokemonSpeciesFormLevelMoves = {
|
||||
[ 48, Moves.PIKA_PAPOW ],
|
||||
],
|
||||
3: [
|
||||
[ EVOLVE_MOVE, Moves.METEOR_MASH ],
|
||||
[ 1, Moves.METEOR_MASH ],
|
||||
[ 1, Moves.TAIL_WHIP ],
|
||||
[ 1, Moves.GROWL ],
|
||||
[ 1, Moves.THUNDER_SHOCK ],
|
||||
@ -18690,7 +18690,7 @@ export const pokemonFormLevelMoves: PokemonSpeciesFormLevelMoves = {
|
||||
[ 48, Moves.PIKA_PAPOW ],
|
||||
],
|
||||
4: [
|
||||
[ EVOLVE_MOVE, Moves.ICICLE_CRASH ],
|
||||
[ 1, Moves.ICICLE_CRASH ],
|
||||
[ 1, Moves.TAIL_WHIP ],
|
||||
[ 1, Moves.GROWL ],
|
||||
[ 1, Moves.THUNDER_SHOCK ],
|
||||
@ -18714,7 +18714,7 @@ export const pokemonFormLevelMoves: PokemonSpeciesFormLevelMoves = {
|
||||
[ 48, Moves.PIKA_PAPOW ],
|
||||
],
|
||||
5: [
|
||||
[ EVOLVE_MOVE, Moves.DRAINING_KISS ],
|
||||
[ 1, Moves.DRAINING_KISS ],
|
||||
[ 1, Moves.TAIL_WHIP ],
|
||||
[ 1, Moves.GROWL ],
|
||||
[ 1, Moves.THUNDER_SHOCK ],
|
||||
@ -18738,7 +18738,7 @@ export const pokemonFormLevelMoves: PokemonSpeciesFormLevelMoves = {
|
||||
[ 48, Moves.PIKA_PAPOW ],
|
||||
],
|
||||
6: [
|
||||
[ EVOLVE_MOVE, Moves.ELECTRIC_TERRAIN ],
|
||||
[ 1, Moves.ELECTRIC_TERRAIN ],
|
||||
[ 1, Moves.TAIL_WHIP ],
|
||||
[ 1, Moves.GROWL ],
|
||||
[ 1, Moves.THUNDER_SHOCK ],
|
||||
@ -18762,7 +18762,7 @@ export const pokemonFormLevelMoves: PokemonSpeciesFormLevelMoves = {
|
||||
[ 48, Moves.PIKA_PAPOW ],
|
||||
],
|
||||
7: [
|
||||
[ EVOLVE_MOVE, Moves.FLYING_PRESS ],
|
||||
[ 1, Moves.FLYING_PRESS ],
|
||||
[ 1, Moves.TAIL_WHIP ],
|
||||
[ 1, Moves.GROWL ],
|
||||
[ 1, Moves.THUNDER_SHOCK ],
|
||||
@ -18886,7 +18886,7 @@ export const pokemonFormLevelMoves: PokemonSpeciesFormLevelMoves = {
|
||||
},
|
||||
[Species.ROTOM]: {
|
||||
1: [
|
||||
[ EVOLVE_MOVE, Moves.OVERHEAT ],
|
||||
[ 1, Moves.OVERHEAT ],
|
||||
[ 1, Moves.DOUBLE_TEAM ],
|
||||
[ 1, Moves.ASTONISH ],
|
||||
[ 5, Moves.THUNDER_SHOCK ],
|
||||
@ -18902,7 +18902,7 @@ export const pokemonFormLevelMoves: PokemonSpeciesFormLevelMoves = {
|
||||
[ 55, Moves.UPROAR ],
|
||||
],
|
||||
2: [
|
||||
[ EVOLVE_MOVE, Moves.HYDRO_PUMP ],
|
||||
[ 1, Moves.HYDRO_PUMP ],
|
||||
[ 1, Moves.DOUBLE_TEAM ],
|
||||
[ 1, Moves.ASTONISH ],
|
||||
[ 5, Moves.THUNDER_SHOCK ],
|
||||
@ -18918,7 +18918,7 @@ export const pokemonFormLevelMoves: PokemonSpeciesFormLevelMoves = {
|
||||
[ 55, Moves.UPROAR ],
|
||||
],
|
||||
3: [
|
||||
[ EVOLVE_MOVE, Moves.BLIZZARD ],
|
||||
[ 1, Moves.BLIZZARD ],
|
||||
[ 1, Moves.DOUBLE_TEAM ],
|
||||
[ 1, Moves.ASTONISH ],
|
||||
[ 5, Moves.THUNDER_SHOCK ],
|
||||
@ -18934,7 +18934,7 @@ export const pokemonFormLevelMoves: PokemonSpeciesFormLevelMoves = {
|
||||
[ 55, Moves.UPROAR ],
|
||||
],
|
||||
4: [
|
||||
[ EVOLVE_MOVE, Moves.AIR_SLASH ],
|
||||
[ 1, Moves.AIR_SLASH ],
|
||||
[ 1, Moves.DOUBLE_TEAM ],
|
||||
[ 1, Moves.ASTONISH ],
|
||||
[ 5, Moves.THUNDER_SHOCK ],
|
||||
@ -18950,7 +18950,7 @@ export const pokemonFormLevelMoves: PokemonSpeciesFormLevelMoves = {
|
||||
[ 55, Moves.UPROAR ],
|
||||
],
|
||||
5: [
|
||||
[ EVOLVE_MOVE, Moves.LEAF_STORM ],
|
||||
[ 1, Moves.LEAF_STORM ],
|
||||
[ 1, Moves.DOUBLE_TEAM ],
|
||||
[ 1, Moves.ASTONISH ],
|
||||
[ 5, Moves.THUNDER_SHOCK ],
|
||||
|
Loading…
x
Reference in New Issue
Block a user