This commit is contained in:
Trung Lê 2026-03-13 04:50:46 +00:00 committed by GitHub
commit fbc0ca324b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 6 additions and 6 deletions

View File

@ -38,7 +38,7 @@ BattleCommandPointers:
dw BattleCommand_Conversion
dw BattleCommand_ResetStats
dw BattleCommand_StoreEnergy
dw BattleCommand_UnleashEnergy
dw BattleCommand_StartBide
dw BattleCommand_ForceSwitch
dw BattleCommand_EndLoop
dw BattleCommand_FlinchTarget

View File

@ -797,7 +797,7 @@ Bide:
checkobedience
doturn
usedmovetext
unleashenergy
startbide
resettypematchup
checkhit
moveanim

View File

@ -102,7 +102,7 @@ Defined in [macros/scripts/battle_commands.asm](https://github.com/pret/pokecrys
## `$21`: `storeenergy`
## `$22`: `unleashenergy`
## `$22`: `startbide`
## `$23`: `forceswitch`

View File

@ -59,7 +59,7 @@ BattleCommand_StoreEnergy:
ld a, BIDE
ld [hl], a
ld b, unleashenergy_command
ld b, startbide_command
jp SkipToBattleCommand
.still_storing
@ -67,7 +67,7 @@ BattleCommand_StoreEnergy:
call StdBattleTextbox
jp EndMoveEffect
BattleCommand_UnleashEnergy:
BattleCommand_StartBide:
ld de, wPlayerDamageTaken
ld bc, wPlayerRolloutCount
ldh a, [hBattleTurn]

View File

@ -38,7 +38,7 @@ ENDM
command conversion ; 1f
command resetstats ; 20
command storeenergy ; 21
command unleashenergy ; 22
command startbide ; 22
command forceswitch ; 23
command endloop ; 24
command flinchtarget ; 25