summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Add-a-new-Pokémon.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Add-a-new-Pokémon.md b/Add-a-new-Pokémon.md
index 3086618..f537c33 100644
--- a/Add-a-new-Pokémon.md
+++ b/Add-a-new-Pokémon.md
@@ -136,7 +136,7 @@ From top to bottom, what it all means:
- **step cycles to hatch:** How many step cycles it takes for an Egg of this Pokémon to hatch. Each step cycle is 256 steps long.
- **unknown 2:** An unused value that's always 5. (In the [leaked G/S prototype from the Space World 1997 demo](https://github.com/pret/pokegold-spaceworld), this value was always 70.)
- **front.dimensions:** The size of the Pokémon's front sprite. The front.dimensions file contains a single byte that's one of three valid values: $55 for a 40x40-pixel (5x5-tile) sprite, $66 for 48x48 pixels (6x6 tiles), or $77 for 56x56 pixels (7x7 tiles). It's automatically generated from the front.png sprite image (we'll get to this later).
-- **padding:** Four unused bytes that are always 0s.
+- **padding:** Four unused bytes that are always 0s. (In the G/S prototype, these values were pointers to the front and back sprites.)
- **growth rate:** The formula that's used to determine experience point thresholds for reaching each level. (The formula coefficients are defined in [data/growth_rates.asm](../blob/master/data/growth_rates.asm).) Valid values:
- `GROWTH_MEDIUM_FAST`: *exp* = *L*³ (1,000,000 exp = level 100)
- `GROWTH_SLIGHTLY_FAST`: *exp* = (3/4)*L*³ + 10*L*² − 30 (849,970 exp = level 100); unused