diff options
author | Bryan Bishop <kanzure@gmail.com> | 2020-01-19 17:18:15 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2020-01-19 17:18:15 -0600 |
commit | 349719fd5ee480d393d9c88b8cbbef0d04e433cb (patch) | |
tree | df6fa1542cf0c2a765d81447124bea0c24ef155c | |
parent | cb39810c23e4e15a7f8b1f3d11ad3707a87ecd52 (diff) |
add some links about dex expansion
-rw-r--r-- | Add-a-new-Pokémon.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Add-a-new-Pokémon.md b/Add-a-new-Pokémon.md index 6ebc608..b53a1c4 100644 --- a/Add-a-new-Pokémon.md +++ b/Add-a-new-Pokémon.md @@ -660,3 +660,5 @@ This has multiple benefits: It's easy to do; just make sure that the various tables have their entries in the right order: Bulbasaur, Ivysaur, Venusaur, …, Celebi, #252, #253, Egg. Unfortunately, you can't have more than 253 Pokémon. IDs are one byte each, so they have 256 possible values. Of those values, $00 indicates a lack of a Pokémon; $FF (−1) is an end-of-list marker; and $FD is `EGG` (though you can change this to $FE, as discussed above). If you value having a 254th Pokémon more than allowing breeding, you could replace `EGG`, but you would also have to carefully remove a lot of code that treats `EGG` specially. + +For adding more than 253 pokemon in *Pokémon Red* see [Skeetendo 6738](https://hax.iimarckus.org/topic/6738/) and [this branch](https://github.com/pret/pokered/commits/adding-pokemon), which might be helpful for dex expansion in *Pokémon Crystal*. |