diff options
Diffstat (limited to 'src/wram.asm')
-rw-r--r-- | src/wram.asm | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/src/wram.asm b/src/wram.asm index cc7129c..0557a47 100644 --- a/src/wram.asm +++ b/src/wram.asm @@ -1208,15 +1208,23 @@ wcdbe:: ; cdbe ds $10 -; stores information about the defending Pokémon -; and about the prize card count on both sides for AI -; byte 0: player's active Pokémon color -; byte 1: player's active Pokémon weakness -; byte 2: player's active Pokémon resistance -; byte 3: player's prize count -; byte 4: opponent's prize count -wcdcf:: ; cdcf - ds $5 +; information about the defending Pokémon and +; the prize card count on both sides for AI: +; player's active Pokémon color +wAIPlayerColor:: ; cdcf + ds $1 +; player's active Pokémon weakness +wAIPlayerWeakness:: ; cdd0 + ds $1 +; player's active Pokémon resistance +wAIPlayerResistance:: ; cdd1 + ds $1 +; player's prize count +wAIPlayerPrizeCount:: ; cdd2 + ds $1 +; opponent's prize count +wAIOpponentPrizeCount:: ; cdd3 + ds $1 ds $7 |