diff options
| author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-15 20:10:54 -0500 |
|---|---|---|
| committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-15 20:10:54 -0500 |
| commit | 1038ebca5e2638ecbce1052c1dad7474372a7fd5 (patch) | |
| tree | 7bc9722faff9aa68ab1e5dc0960f9ce35da6bbec /battle | |
| parent | 606817f18b67a7d033adad31cbbea19d2e05e98e (diff) | |
Move more contiguous related code blocks from main.asm to engine/ and events/
Diffstat (limited to 'battle')
| -rw-r--r-- | battle/moves/move_descriptions.asm | 3 | ||||
| -rw-r--r-- | battle/moves/move_effects.asm | 2 | ||||
| -rw-r--r-- | battle/moves/move_effects_pointers.asm | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/battle/moves/move_descriptions.asm b/battle/moves/move_descriptions.asm index df31fd38a..19659b32a 100644 --- a/battle/moves/move_descriptions.asm +++ b/battle/moves/move_descriptions.asm @@ -1,4 +1,5 @@ -; MoveDescriptions: ; 2cb52 +MoveDescriptions:: ; 2cb52 +; entries correspond to move ids (see constants/move_constants.asm) dw PoundDescription dw KarateChopDescription dw DoubleslapDescription diff --git a/battle/moves/move_effects.asm b/battle/moves/move_effects.asm index c34e5ed23..c56ff2560 100644 --- a/battle/moves/move_effects.asm +++ b/battle/moves/move_effects.asm @@ -1,3 +1,5 @@ +MoveEffects: ; 2732e + NormalHit: checkobedience usedmovetext diff --git a/battle/moves/move_effects_pointers.asm b/battle/moves/move_effects_pointers.asm index d15beedb7..a12092881 100644 --- a/battle/moves/move_effects_pointers.asm +++ b/battle/moves/move_effects_pointers.asm @@ -1,3 +1,4 @@ +MoveEffectsPointers: ; 271f4 ; entries correspond to EFFECT_* constants dw NormalHit dw DoSleep |
