summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2018-07-21 23:01:06 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2018-07-21 23:01:06 -0400
commit53c9cbceed55c75cd862dba9036506189d4959e4 (patch)
tree5068f607f5f83ae6f7afcd4bf3118f3f89d2d76d
parent6c9d23c13a5c6c07b6d9414867d15ab54af57093 (diff)
Typos
-rw-r--r--Evolution-moves.md8
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:
...