diff options
-rw-r--r-- | Evolution-moves.md | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Evolution-moves.md b/Evolution-moves.md index 580c96c..0b845f6 100644 --- a/Evolution-moves.md +++ b/Evolution-moves.md @@ -107,7 +107,9 @@ Create **data/pokemon/evolution_moves.asm**: + db NO_MOVE ; CELEBI ``` -This is simply a table of 251 evolution moves, one for each Pokémon. I've left out the many `NO_MOVE`s. Some of the moves here are taken from [the S/M data](https://www.serebii.net/sunmoon/evolutionmoves.shtml) (like Petal Dance for Venusaur); others are moves that G/S/C Pokémon learned at the same level they evolved (like Thunderpunch for Ampharos); and a few are invented to make up for Gen 7 evolution moves that don't exist in Gen 2 (like Iron Tail for Steelix). Of course, feel free to design your own set. +This is simply a table of 251 evolution moves, one for each Pokémon. I've left out the many `NO_MOVE`s, so make sure to complete the table correctly. + +Some of the moves here are taken from [the S/M data](https://www.serebii.net/sunmoon/evolutionmoves.shtml) (like Petal Dance for Venusaur); others are moves that G/S/C Pokémon learned at the same level they evolved (like Thunderpunch for Ampharos); and a few are invented to make up for Gen 7 evolution moves that don't exist in Gen 2 (like Iron Tail for Steelix). Of course, feel free to design your own set. ## 2. Revise level-up movesets to match evolution moves @@ -124,7 +126,7 @@ Edit [data/pokemon/evos_attacks.asm](../blob/master/data/pokemon/evos_attacks.as ... db 1, HARDEN - db 7, HARDEN - .... + ... ButterfreeEvosAttacks: ... @@ -136,7 +138,7 @@ Edit [data/pokemon/evos_attacks.asm](../blob/master/data/pokemon/evos_attacks.as ... db 1, HARDEN - db 7, HARDEN - .... + ... BeedrillEvosAttacks: ... |