mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
Other files belong in data/battle/
This commit is contained in:
parent
c8575823a0
commit
e0088adb3f
@ -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
|
||||
|
@ -7,4 +7,4 @@ StatNames:
|
||||
db "SPCL.DEF@"
|
||||
db "ACCURACY@"
|
||||
db "EVASION@"
|
||||
db "ABILITY@"
|
||||
db "ABILITY@" ; used for BattleCommand_Curse
|
||||
|
@ -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`
|
||||
|
@ -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
|
||||
|
4
main.asm
4
main.asm
@ -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"
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user