diff options
author | Idain <luiscarlosholguinperez@outlook.com> | 2022-03-13 23:08:34 -0400 |
---|---|---|
committer | Idain <luiscarlosholguinperez@outlook.com> | 2022-03-13 23:08:34 -0400 |
commit | d8ab9493d6b9cd24d0f8b965530a28b8fa18d83c (patch) | |
tree | 2ce16550e24ed86af80330557164d88965b45b60 | |
parent | 86737d7c258c87719c99602a57f550fddd200e1e (diff) |
Add table_width and assert_table_length macros
-rw-r--r-- | Evolution-moves.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Evolution-moves.md b/Evolution-moves.md index 20180e8..226525e 100644 --- a/Evolution-moves.md +++ b/Evolution-moves.md @@ -14,6 +14,7 @@ Create **data/pokemon/evolution_moves.asm**: ```diff +EvolutionMoves:: ++ table_width 1, EvolutionMoves + db NO_MOVE ; BULBASAUR + db NO_MOVE ; IVYSAUR + db PETAL_DANCE ; VENUSAUR @@ -105,6 +106,7 @@ Create **data/pokemon/evolution_moves.asm**: + db ROLLING_KICK ; HITMONTOP + ... + db NO_MOVE ; CELEBI ++ assert_table_length NUM_POKEMON ``` 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. |