diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-06-05 23:26:18 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-06-05 23:26:18 -0500 |
commit | fd98438233b02e7b9727998bd483ff2683453fa6 (patch) | |
tree | 297d75d14769faae3795ca531b9adcf0b4c72a0f | |
parent | a60236d2ef523e8b4c09b8ba66e8ce2b049cc6c5 (diff) |
battlemon in wram.asm
-rw-r--r-- | wram.asm | 58 |
1 files changed, 58 insertions, 0 deletions
@@ -1,3 +1,61 @@ +SECTION "BattleMons",BSS[$c62a] + +BattleMonSpecies: ; c62a + ds 3 ; wtf? +BattleMonItem: ; c62d + ds 1 + +BattleMonMoves: +BattleMonMove1: ; c62e + ds 1 +BattleMonMove2: ; c62f + ds 1 +BattleMonMove3: ; c630 + ds 1 +BattleMonMove4: ; c631 + ds 1 + +BattleMonDVs: +BattleMonAtkDefDV: ; c632 + ds 1 +BattleMonSpdSpclDV: ; c633 + ds 1 + +BattleMonPP: +BattleMonPPMove1: ; c634 + ds 1 +BattleMonPPMove2: ; c635 + ds 1 +BattleMonPPMove3: ; c636 + ds 1 +BattleMonPPMove4: ; c637 + ds 1 + +BattleMonHappiness: ; c638 + ds 1 +BattleMonLevel: ; c639 + ds 1 + +; TODO this is probably wrong +EnemyMonPokerusStatus: ; c63a + ds 2 ; dunno + +BattleMonHP: ; c63c + ds 2 +BattleMonMaxHP: ; c63e + ds 2 + +BattleMonAtk: ; c640 + ds 2 +BattleMonDef: ; c642 + ds 2 +BattleMonSpd: ; c644 + ds 2 +BattleMonSpclAtk: ; c646 + ds 2 +BattleMonSpclDef: ; c648 + ds 2 + SECTION "OtherTrainerParty",BSS[$d280] OTPartyMonHeader: ; d280 |