Other files belong in data/battle/

This commit is contained in:
Remy Oukaour 2018-01-10 17:49:19 -05:00
parent c8575823a0
commit e0088adb3f
7 changed files with 12 additions and 12 deletions

View File

@ -9,10 +9,10 @@ CriticalHitMoves:
db -1
CriticalHitChances:
db 7 percent ; 0
db 12 percent + 2 ; 1
db 25 percent + 1 ; 2
db 33 percent + 1 ; 3
db 50 percent + 1 ; 4
db 50 percent + 1 ; 5
db 50 percent + 1 ; 6
db 7 percent ; 0
db 12 percent + 2 ; +1
db 25 percent + 1 ; +2
db 33 percent + 1 ; +3
db 50 percent + 1 ; +4
db 50 percent + 1 ; +5
db 50 percent + 1 ; +6

View File

@ -7,4 +7,4 @@ StatNames:
db "SPCL.DEF@"
db "ACCURACY@"
db "EVASION@"
db "ABILITY@"
db "ABILITY@" ; used for BattleCommand_Curse

View File

@ -1,6 +1,6 @@
# Move Effect Commands
Defined in [macros/scripts/battle_commands.asm](/macros/scripts/battle_commands.asm) and [data/battle_command_pointers.asm:BattleCommandPointers](/data/battle_command_pointers.asm).
Defined in [macros/scripts/battle_commands.asm](/macros/scripts/battle_commands.asm) and [data/battle/effect_command_pointers.asm:BattleCommandPointers](/data/battle/effect_command_pointers.asm).
## `$01`: `checkturn`

View File

@ -3,7 +3,7 @@ command: MACRO
\1 EQUS "db \1_command"
ENDM
; BattleCommandPointers indexes (see data/battle_command_pointers.asm)
; BattleCommandPointers indexes (see data/battle/effect_command_pointers.asm)
enum_start 1
command checkturn ; 01
command checkobedience ; 02

View File

@ -170,7 +170,7 @@ INCLUDE "data/trainers/parties.asm"
SECTION "Battle Core", ROMX
INCLUDE "engine/battle/core.asm"
INCLUDE "data/battle_command_pointers.asm"
INCLUDE "data/battle/effect_command_pointers.asm"
SECTION "bank10", ROMX
@ -300,7 +300,7 @@ SECTION "bank20", ROMX
INCLUDE "engine/player_movement.asm"
INCLUDE "engine/engine_flags.asm"
INCLUDE "engine/variables.asm"
INCLUDE "data/battle_text.asm"
INCLUDE "data/battle/battle_text.asm"
INCLUDE "engine/debug.asm"