diff options
author | yenatch <yenatch@gmail.com> | 2014-05-23 15:20:53 -0700 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-05-23 15:20:53 -0700 |
commit | 61dbfa440bd83b8bb490ec7e1c44ea6f0aed66df (patch) | |
tree | c6b4ef2087b24e6e176477b0456f63e9c24b432c /main.asm | |
parent | 0dea0cc3fb815aae7d7a5e856aabf9b402d45cd0 (diff) |
Use a dedicated label for base stats.
The existing {Bulbasaur,Ivysaur,...}BaseStats labels are for convenience.
Diffstat (limited to 'main.asm')
-rwxr-xr-x | main.asm | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3028,7 +3028,7 @@ Func_152e:: ; 152e (0:152e) GetMonHeader:: ; 1537 (0:1537) ld a,[H_LOADEDROMBANK] push af - ld a,BANK(BulbasaurBaseStats) + ld a,BANK(BaseStats) ld [H_LOADEDROMBANK],a ld [$2000],a push bc @@ -3056,7 +3056,7 @@ GetMonHeader:: ; 1537 (0:1537) ld a,[$d11e] dec a ld bc,28 - ld hl,BulbasaurBaseStats + ld hl,BaseStats call AddNTimes ld de,W_MONHEADER ld bc,28 @@ -17121,6 +17121,7 @@ SECTION "bankE",ROMX,BANK[$E] INCLUDE "data/moves.asm" +BaseStats: INCLUDE "data/base_stats.asm" INCLUDE "data/cries.asm" |