diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-03 22:45:12 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-03 22:45:12 -0500 |
commit | 9f62d7911bdc0550d9ef1e66195ed22fb7f3ba1c (patch) | |
tree | 24087fc560eb8132e7cdf87fb1b39623d415fac4 /wram.asm | |
parent | c88c4a834094e91f1505eab0e22294963e1dd987 (diff) |
Identify some more uses of wBuffer1-6
Diffstat (limited to 'wram.asm')
-rw-r--r-- | wram.asm | 38 |
1 files changed, 37 insertions, 1 deletions
@@ -2248,14 +2248,24 @@ wCurHPAnimLowHP:: db wCurHPAnimHighHP:: db NEXTU -; battle AI +; move AI wEnemyAIMoveScores:: ds NUM_MOVES NEXTU +; switch AI +wEnemyEffectivenessVsPlayerMons:: flag_array PARTY_LENGTH +wPlayerEffectivenessVsEnemyMons:: flag_array PARTY_LENGTH + +NEXTU ; battle HUD wBattleHUDTiles:: ds PARTY_LENGTH NEXTU +; thrown ball data +wFinalCatchRate:: db +wThrownBallWobbleCount:: db + +NEXTU ; evolution data wEvolutionOldSpecies:: db wEvolutionNewSpecies:: db @@ -2267,6 +2277,10 @@ NEXTU wExpToNextLevel:: ds 3 NEXTU +; PP Up +wPPUpPPBuffer:: ds NUM_MOVES + +NEXTU ; lucky number show wMonIDDigitsBuffer:: ds 5 @@ -2276,6 +2290,28 @@ wMonSubmenuCount:: db wMonSubmenuItems:: ds NUM_MONMENU_ITEMS + 1 NEXTU +; field move data +wFieldMoveData:: +wFieldMoveJumptableIndex:: db +wEscapeRopeOrDigType:: +wSurfingPlayerState:: +wFishingRodUsed:: db +wCutWhirlpoolOverworldBlockAddr:: dw +wCutWhirlpoolReplacementBlock:: db +wCutWhirlpoolAnimationType:: +wStrengthSpecies:: +wFishingResult:: db + ds 1 +wFieldMoveDataEnd:: + +NEXTU +; hidden items +wCurMapScriptBank:: db +wRemainingBGEventCount:: db +wBottomRightYCoord:: db +wBottomRightXCoord:: db + +NEXTU ; heal machine anim wHealMachineAnimType:: db wHealMachineTempOBP1:: db |