mirror of https://github.com/pret/pokecrystal.git
Rename checkcurl to checkrollout
This commit is contained in:
parent
cbfd48b8d1
commit
d323aa83dd
|
@ -95,7 +95,7 @@ BattleCommandPointers:
|
|||
dw BattleCommand_PerishSong
|
||||
dw BattleCommand_StartSandstorm
|
||||
dw BattleCommand_Endure
|
||||
dw BattleCommand_CheckCurl
|
||||
dw BattleCommand_CheckRollout
|
||||
dw BattleCommand_RolloutPower
|
||||
dw BattleCommand_Unused5D
|
||||
dw BattleCommand_FuryCutter
|
||||
|
|
|
@ -1536,7 +1536,7 @@ Endure:
|
|||
endmove
|
||||
|
||||
Rollout:
|
||||
checkcurl
|
||||
checkrollout
|
||||
checkobedience
|
||||
doturn
|
||||
usedmovetext
|
||||
|
|
|
@ -273,7 +273,7 @@ Defined in [macros/scripts/battle_commands.asm](https://github.com/pret/pokecrys
|
|||
## `$5A`: `endure`
|
||||
|
||||
|
||||
## `$5B`: `checkcurl`
|
||||
## `$5B`: `checkrollout`
|
||||
|
||||
|
||||
## `$5C`: `rolloutpower`
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
DEF MAX_ROLLOUT_COUNT EQU 5
|
||||
|
||||
BattleCommand_CheckCurl:
|
||||
BattleCommand_CheckRollout:
|
||||
ld de, wPlayerRolloutCount
|
||||
ldh a, [hBattleTurn]
|
||||
and a
|
||||
|
|
|
@ -95,7 +95,7 @@ ENDM
|
|||
command perishsong ; 58
|
||||
command startsandstorm ; 59
|
||||
command endure ; 5a
|
||||
command checkcurl ; 5b
|
||||
command checkrollout ; 5b
|
||||
command rolloutpower ; 5c
|
||||
command effect0x5d ; 5d
|
||||
command furycutter ; 5e
|
||||
|
|
Loading…
Reference in New Issue