diff options
author | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2019-08-06 13:03:14 +0100 |
---|---|---|
committer | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2019-08-07 23:24:59 +0100 |
commit | 411cc4e915139fc91503445b94f8551c2f4850fc (patch) | |
tree | a16c2f769b9b88d1b2a68998fcdfd79174ff7ea6 /src/wram.asm | |
parent | 24c3c412e9aefad1b2c4fd9eb4cf82747e0614e1 (diff) |
Work on Func_14184
Diffstat (limited to 'src/wram.asm')
-rw-r--r-- | src/wram.asm | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/wram.asm b/src/wram.asm index 776dfc1..d2a5ac5 100644 --- a/src/wram.asm +++ b/src/wram.asm @@ -1192,16 +1192,25 @@ wcdae:: ; cdae ds $5 +; information about various properties of +; loaded move for AI calculations wTempLoadedMoveEnergyCost:: ; cdb5 ds $1 - wTempLoadedMoveEnergyNeededType:: ; cdb6 ds $1 - wTempLoadedMoveEnergyNeededAmount:: ; cdb7 ds $1 - ds $6 +; used for the AI to store various +; details about a given card +wTempCardRetreatCost:: ; cdb8 + ds $1 +wTempCardID:: ; cdb9 + ds $1 +wTempCardType:: ; cdba + ds $1 + + ds $3 ; used for AI to score decisions for actions wAIScore:: ; cdbe |