diff options
author | libjet <libj3t@gmail.com> | 2020-03-15 00:51:21 +0000 |
---|---|---|
committer | libjet <libj3t@gmail.com> | 2020-03-15 00:51:21 +0000 |
commit | e81df1886affec6bf47405065ee39837990f2cfa (patch) | |
tree | d6498780441cc7538a630c77e7f992db33ffe000 /home/mon_data.asm | |
parent | 76216e6ce5de8a78cfd9312eb08dbb127b4d34d0 (diff) |
Merge files into pokemon.asm, battle.asm and menu.asm
Diffstat (limited to 'home/mon_data.asm')
-rwxr-xr-x | home/mon_data.asm | 87 |
1 files changed, 0 insertions, 87 deletions
diff --git a/home/mon_data.asm b/home/mon_data.asm deleted file mode 100755 index c18bfd20..00000000 --- a/home/mon_data.asm +++ /dev/null @@ -1,87 +0,0 @@ -Unreferenced_GetNthMove:: - ld hl, wd149 - ld c, a - ld b, 0 - add hl, bc - ld a, [hl] - ret - -GetBaseData:: - push bc - push de - push hl - ldh a, [hROMBank] - push af - ld a, BANK(BaseData) - rst Bankswitch - -; Egg doesn't have BaseData - ld a, [wCurSpecies] - cp EGG - jr z, .egg - -; Get BaseData - dec a - ld bc, BASE_DATA_SIZE - ld hl, BaseData - call AddNTimes - ld de, wCurBaseData - ld bc, BASE_DATA_SIZE - call CopyBytes - jr .end - -.egg - ld de, UnknownEggPic - -; Sprite dimensions - ld b, $55 ; 5x5 - ld hl, wBasePicSize - ld [hl], b - -; Beta front and back sprites -; (see pokegold-spaceworld's data/pokemon/base_stats/*) - ld hl, wBaseUnusedFrontpic - ld [hl], e - inc hl - ld [hl], d - inc hl - ld [hl], e - inc hl - ld [hl], d - jr .end ; useless - -.end -; Replace Pokedex # with species - ld a, [wCurSpecies] - ld [wBaseDexNo], a - - pop af - rst Bankswitch - pop hl - pop de - pop bc - ret - -GetCurNick:: - ld a, [wCurPartyMon] - ld hl, wPartyMonNicknames - -GetNick:: -; Get nickname a from list hl. - - push hl - push bc - - call SkipNames - ld de, wStringBuffer1 - - push de - ld bc, MON_NAME_LENGTH - call CopyBytes - pop de - - callfar CorrectNickErrors - - pop bc - pop hl - ret
\ No newline at end of file |