diff options
author | Luca Cristiano <6769655+Zekromaster@users.noreply.github.com> | 2022-04-05 13:33:07 +0200 |
---|---|---|
committer | Luca Cristiano <6769655+Zekromaster@users.noreply.github.com> | 2022-04-05 13:33:07 +0200 |
commit | 462d690ebf10ccae86e5956a1ed9e372757fb81c (patch) | |
tree | 3ff938601aad959d4f450a0d47879f02f7463c52 | |
parent | 2e97dfdc5bff01412173d308f46709a45c1e22be (diff) |
Fix unclosed code block
-rw-r--r-- | How-to-add-a-new-Pokémon-species.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/How-to-add-a-new-Pokémon-species.md b/How-to-add-a-new-Pokémon-species.md index 88b5e87..0b73ce4 100644 --- a/How-to-add-a-new-Pokémon-species.md +++ b/How-to-add-a-new-Pokémon-species.md @@ -135,6 +135,7 @@ Edit [src/pokemon.c](../blob/master/src/pokemon.c): [SPECIES_CHIMECHO - 1] = ANIM_H_SLIDE_WOBBLE, + [SPECIES_MEWTHREE - 1] = ANIM_ANIM_GROW_VIBRATE, }; +``` There are also [predifined animations](#available-back-animations) for the back sprites as well. Edit [src/pokemon_animation.c](../blob/master/src/pokemon_animation.c): |