diff options
-rw-r--r-- | Add-a-new-Pack-pocket.md | 2 | ||||
-rw-r--r-- | Add-a-new-field-move-effect.md | 6 | ||||
-rw-r--r-- | Add-a-new-move-effect.md | 2 | ||||
-rw-r--r-- | Add-a-new-trainer-class.md | 2 | ||||
-rw-r--r-- | Allow-more-trainer-parties,-with-individual-DVs,-stat-experience,-and-nicknames.md | 2 | ||||
-rw-r--r-- | Physical-Special-split.md | 2 | ||||
-rw-r--r-- | Rock-Climb.md | 2 |
7 files changed, 9 insertions, 9 deletions
diff --git a/Add-a-new-Pack-pocket.md b/Add-a-new-Pack-pocket.md index 4b3f0ff..5ccef4a 100644 --- a/Add-a-new-Pack-pocket.md +++ b/Add-a-new-Pack-pocket.md @@ -199,7 +199,7 @@ As the `.InitList` comment explains, this "loads 0 in the count and −1 in the ## 7. Update `HasNoItems` and `CheckRegisteredItem` to check the new pocket -Edit [engine/menus/start_menu.asm](../blob/master/engine/menus/start_menu.asm): +Edit [engine/pokemon/mon_menu.asm](../blob/master/engine/pokemon/mon_menu.asm) (or [engine/menus/start_menu.asm](../blob/master/engine/menus/start_menu.asm) in older versions of pokecrystal): ```diff HasNoItems: diff --git a/Add-a-new-field-move-effect.md b/Add-a-new-field-move-effect.md index 7cfb558..4a7a50d 100644 --- a/Add-a-new-field-move-effect.md +++ b/Add-a-new-field-move-effect.md @@ -15,7 +15,7 @@ Edit [constants/menu_constants.asm](../blob/master/constants/menu_constants.asm) ```diff ; MonMenuOptions indexes (see data/mon_menu.asm) - ; used by PokemonActionSubmenu (see engine/menus/start_menu.asm) + ; used by PokemonActionSubmenu (see engine/pokemon/mon_menu.asm) const_def 1 ; moves const MONMENUITEM_CUT ; 1 @@ -34,7 +34,7 @@ Edit [data/mon_menu.asm](../blob/master/data/mon_menu.asm): ```diff MonMenuOptions: - ; category, item, value; actions are in PokemonActionSubmenu (see engine/start_menu.asm) + ; category, item, value; actions are in PokemonActionSubmenu (see engine/pokemon/mon_menu.asm) ; moves db MONMENU_FIELD_MOVE, MONMENUITEM_CUT, CUT ... @@ -48,7 +48,7 @@ Edit [data/mon_menu.asm](../blob/master/data/mon_menu.asm): ## 3. Implement the party menu item -Edit [engine/menus/start_menu.asm](../blob/master/engine/menus/start_menu.asm): +Edit [engine/pokemon/mon_menu.asm](../blob/master/engine/pokemon/mon_menu.asm) (or [engine/menus/start_menu.asm](../blob/master/engine/menus/start_menu.asm) in older versions of pokecrystal): ```diff PokemonActionSubmenu: diff --git a/Add-a-new-move-effect.md b/Add-a-new-move-effect.md index d85731e..20bbee6 100644 --- a/Add-a-new-move-effect.md +++ b/Add-a-new-move-effect.md @@ -69,7 +69,7 @@ Edit [data/moves/effects.asm](../blob/master/data/moves/effects.asm): + applydamage + criticaltext + supereffectivetext -+ checkdestinybond ++ checkfaint + buildopponentrage + kingsrock + endmove diff --git a/Add-a-new-trainer-class.md b/Add-a-new-trainer-class.md index 4ffefb1..7b068e1 100644 --- a/Add-a-new-trainer-class.md +++ b/Add-a-new-trainer-class.md @@ -281,8 +281,8 @@ The comment at the top of parties.asm explains the data structure: ; - db "NAME@", TRAINERTYPE_* constant ; - 1 to 6 Pokémon: ; * for TRAINERTYPE_NORMAL: db level, species -; * for TRAINERTYPE_ITEM: db level, species, item ; * for TRAINERTYPE_MOVES: db level, species, 4 moves +; * for TRAINERTYPE_ITEM: db level, species, item ; * for TRAINERTYPE_ITEM_MOVES: db level, species, item, 4 moves ; - db -1 ; end ``` diff --git a/Allow-more-trainer-parties,-with-individual-DVs,-stat-experience,-and-nicknames.md b/Allow-more-trainer-parties,-with-individual-DVs,-stat-experience,-and-nicknames.md index 2a8e92c..a35e1bc 100644 --- a/Allow-more-trainer-parties,-with-individual-DVs,-stat-experience,-and-nicknames.md +++ b/Allow-more-trainer-parties,-with-individual-DVs,-stat-experience,-and-nicknames.md @@ -1342,8 +1342,8 @@ Edit [data/trainers/parties.asm](../blob/master/data/trainers/parties.asm): +; - db "NAME@", TRAINERTYPE_* constants |ed together ; - 1 to 6 Pokémon: -; * for TRAINERTYPE_NORMAL: db level, species --; * for TRAINERTYPE_ITEM: db level, species, item -; * for TRAINERTYPE_MOVES: db level, species, 4 moves +-; * for TRAINERTYPE_ITEM: db level, species, item -; * for TRAINERTYPE_ITEM_MOVES: db level, species, item, 4 moves +; * in all cases: db level, species +; * with TRAINERTYPE_NICKNAME: db "NICKNAME@" diff --git a/Physical-Special-split.md b/Physical-Special-split.md index 6f08a5d..69da95c 100644 --- a/Physical-Special-split.md +++ b/Physical-Special-split.md @@ -403,7 +403,7 @@ Instead of printing "TYPE/" in the move property box, we print the move's catego ## 9. Display categories in the Move screen -Edit [engine/menus/start_menu.asm](../blob/master/engine/menus/start_menu.asm): +Edit [engine/pokemon/mon_menu.asm](../blob/master/engine/pokemon/mon_menu.asm) (or [engine/menus/start_menu.asm](../blob/master/engine/menus/start_menu.asm) in older versions of pokecrystal): ```diff PlaceMoveData: diff --git a/Rock-Climb.md b/Rock-Climb.md index 8e57f9a..df3f4a5 100644 --- a/Rock-Climb.md +++ b/Rock-Climb.md @@ -71,7 +71,7 @@ Rocky walls will prompt to use Rock Climb when talked to, so they need to be `TA Now we can start to add the field move effect, following [this tutorial](Add-a-new-field-move-effect). -Define `MONMENUITEM_ROCKCLIMB`; associate it with the move `ROCK_CLIMB`; and implement `MonMenu_RockClimb` for its menu action (in [engine/menus/start_menu.asm](../blob/master/engine/menus/start_menu.asm)) like this: +Define `MONMENUITEM_ROCKCLIMB`; associate it with the move `ROCK_CLIMB`; and implement `MonMenu_RockClimb` for its menu action (in [engine/pokemon/mon_menu.asm](../blob/master/engine/pokemon/mon_menu.asm), or [engine/menus/start_menu.asm](../blob/master/engine/menus/start_menu.asm) in older versions of pokecrystal) like this: ```diff +MonMenu_RockClimb: |