diff options
author | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2020-06-03 00:06:25 +0100 |
---|---|---|
committer | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2020-12-16 00:22:58 +0000 |
commit | b75d9712271fc49b7c3f83fc65c4b260624af386 (patch) | |
tree | 02bf51664de3fd7715da015402de95023f5e9bc1 /src/wram.asm | |
parent | e6b82ee26eb8ed1ccf58718db1a9f6f5027e8200 (diff) |
Psychic attack effects
Diffstat (limited to 'src/wram.asm')
-rw-r--r-- | src/wram.asm | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/src/wram.asm b/src/wram.asm index f4c1c36..c16fb56 100644 --- a/src/wram.asm +++ b/src/wram.asm @@ -717,11 +717,10 @@ wNoItemSelectionMenuKeys:: ; cbd6 wCardPageExitKeys:: ; cbd7 ds $1 +; used to store function pointer for printing card order +; in card list reordering screen. wcbd8:: ; cbd8 - ds $1 - -wcbd9:: ; cbd9 - ds $1 + ds $2 ; in the hand or discard pile card screen, id of the text printed in the bottom-left box wCardListInfoBoxText:: ; cbda @@ -1685,7 +1684,13 @@ wce70:: ; ce70 wce71:: ; ce71 ds $1 - ds $a + ds $3 + +; stores the amount of cards that are being ordered. +wNumberOfCardsToOrder:: ; ce75 + ds $1 + + ds $6 ; used in CountPokemonIDInPlayArea wTempPokemonID_ce7c:: ; ce7c |