diff options
Diffstat (limited to 'Add-a-new-TM-or-HM.md')
-rw-r--r-- | Add-a-new-TM-or-HM.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Add-a-new-TM-or-HM.md b/Add-a-new-TM-or-HM.md index 2b7f68c..e47115c 100644 --- a/Add-a-new-TM-or-HM.md +++ b/Add-a-new-TM-or-HM.md @@ -135,7 +135,7 @@ This associates the `AEROBLAST_TMNUM` TM/HM constant with the `AEROBLAST` move c ## 4. Add the TM or HM to base learnsets -So far we've created items for TM51 and HM08 and assigned their moves, but the items aren't compatible with any Pokémon. So edit the `tmhm` entries in [data/pokemon/base_stats/](../blob/master/data/pokemon/base_stats/): +So far we've created items for TM51 and HM08 and assigned their moves, but the items aren't compatible with any Pokémon. So edit the `tmhm` entries in [data/pokemon/base_stats/\*.asm](../blob/master/data/pokemon/base_stats/): - [chansey.asm](../blob/master/data/pokemon/base_stats/chansey.asm): `..., FLASH, FLAMETHROWER, ...` → `..., FLASH, SOFTBOILED, FLAMETHROWER, ...` - [blissey.asm](../blob/master/data/pokemon/base_stats/blissey.asm): `..., FLASH, FLAMETHROWER, ...` → `..., FLASH, SOFTBOILED, FLAMETHROWER, ...` @@ -286,7 +286,7 @@ error: Section 'bank14' is too big (max size = 0x4000 bytes). One way to fix this is to remove the six unknown/padding bytes from all the base data. -First edit all the base data files, removing these three lines from each: +First edit all the [data/pokemon/base_stats/\*.asm](../blob/master/data/pokemon/base_stats/) files, removing these three lines from each: - `db 100 ; unknown 1` - `db 5 ; unknown 2` |