From b5417fafec7dd37cb4be391f3bd3d4541a2a381e Mon Sep 17 00:00:00 2001 From: Remy Oukaour Date: Tue, 26 Dec 2017 17:47:05 -0500 Subject: Split battle/ into data/ and engine/ components --- constants/move_constants.asm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'constants/move_constants.asm') diff --git a/constants/move_constants.asm b/constants/move_constants.asm index a4b1a0ba8..fb729028c 100644 --- a/constants/move_constants.asm +++ b/constants/move_constants.asm @@ -1,9 +1,9 @@ ; move ids ; indexes for: -; - MoveDescriptions (see battle/moves/move_descriptions.asm) -; - Moves (see battle/moves/moves.asm) -; - MoveNames (see battle/move_names.asm) -; - BattleAnimations (see battle/anims.asm) +; - Moves (see data/moves/moves.asm) +; - MoveNames (see data/moves/move_names.asm) +; - MoveDescriptions (see data/moves/move_descriptions.asm) +; - BattleAnimations (see data/moves/move_anims.asm) const_def const NO_MOVE ; 00 const POUND ; 01 -- cgit v1.2.3 From 7a4d64125176d9bd946682a3f9440de0f71324af Mon Sep 17 00:00:00 2001 From: Remy Oukaour Date: Wed, 27 Dec 2017 01:29:15 -0500 Subject: Remove redundant data/ filename prefixes --- constants/move_constants.asm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'constants/move_constants.asm') diff --git a/constants/move_constants.asm b/constants/move_constants.asm index fb729028c..472ff2d0b 100644 --- a/constants/move_constants.asm +++ b/constants/move_constants.asm @@ -1,9 +1,9 @@ ; move ids ; indexes for: ; - Moves (see data/moves/moves.asm) -; - MoveNames (see data/moves/move_names.asm) -; - MoveDescriptions (see data/moves/move_descriptions.asm) -; - BattleAnimations (see data/moves/move_anims.asm) +; - MoveNames (see data/moves/names.asm) +; - MoveDescriptions (see data/moves/descriptions.asm) +; - BattleAnimations (see data/moves/animations.asm) const_def const NO_MOVE ; 00 const POUND ; 01 -- cgit v1.2.3