From 349719fd5ee480d393d9c88b8cbbef0d04e433cb Mon Sep 17 00:00:00 2001 From: Bryan Bishop Date: Sun, 19 Jan 2020 17:18:15 -0600 Subject: add some links about dex expansion --- "Add-a-new-Pok\303\251mon.md" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/Add-a-new-Pok\303\251mon.md" "b/Add-a-new-Pok\303\251mon.md" index 6ebc608..b53a1c4 100644 --- "a/Add-a-new-Pok\303\251mon.md" +++ "b/Add-a-new-Pok\303\251mon.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*. -- cgit v1.2.3