engine/stats_screen.asm

This commit is contained in:
PikalaxALT 2015-11-19 23:38:16 -05:00
parent 93a129eb6d
commit b023056259
5 changed files with 1203 additions and 1195 deletions

View File

@ -48,6 +48,8 @@ PIC_POINTERS EQU $48
UNOWN_PIC_POINTERS EQU $49
TRAINER_PIC_POINTERS EQU $4A
PICS_FIX EQU $36
PICS_1 EQU $48
PICS_2 EQU $49
PICS_3 EQU $4A

1150
engine/stats_screen.asm Executable file

File diff suppressed because it is too large Load Diff

1212
main.asm

File diff suppressed because it is too large Load Diff

View File

@ -665,9 +665,10 @@ Function894dc: ; 894dc
push af
ld a, 5
ld [rSVBK], a
ld c, d
ld b, 0
ld hl, Unknown_89509
ld hl, .PalettePointers
rept 2
add hl, bc
endr
@ -675,25 +676,26 @@ endr
ld h, [hl]
ld l, a
ld de, wMapPals
ld bc, 24
ld bc, 3 palettes
call CopyBytes
ld hl, Palette_89557
ld de, wd018
ld bc, 24
ld hl, .Pals345
ld de, wMapPals + 3 palettes
ld bc, 3 palettes
call CopyBytes
pop af
ld [rSVBK], a
pop bc
ret
; 89509
Unknown_89509: ; 89509
dw Palette_8950f
dw Palette_89527
dw Palette_8953f
.PalettePointers: ; 89509
dw .Pals012a
dw .Pals012b
dw .Pals012c
; 8950f
Palette_8950f: ; 8950f
.Pals012a: ; 8950f
RGB 31, 31, 31
RGB 10, 17, 13
RGB 10, 08, 22
@ -709,7 +711,7 @@ Palette_8950f: ; 8950f
RGB 10, 17, 13
RGB 00, 00, 00
Palette_89527: ; 89527
.Pals012b: ; 89527
RGB 31, 31, 31
RGB 30, 22, 11
RGB 31, 08, 15
@ -725,7 +727,7 @@ Palette_89527: ; 89527
RGB 30, 22, 11
RGB 00, 00, 00
Palette_8953f: ; 8953f
.Pals012c: ; 8953f
RGB 31, 31, 31
RGB 15, 20, 26
RGB 25, 07, 20
@ -741,7 +743,7 @@ Palette_8953f: ; 8953f
RGB 15, 20, 26
RGB 00, 00, 00
Palette_89557: ; 89557
.Pals345: ; 89557
RGB 31, 31, 31
RGB 31, 31, 31
RGB 31, 13, 00

View File

@ -1536,6 +1536,8 @@ wd016:: ds 1
wMartItem8BCD::
wd017:: ds 1
ds wd00d - @
wd00d_MonOT:: ds NAME_LENGTH
wd018_Mon:: party_struct wd018_Mon
ds wd018_Mon - @
@ -1620,6 +1622,7 @@ MenuItemsListEnd::
wTempTrainerHeaderEnd::
wd04e:: ds 2
wOaksPkmnTalkPkmnNameBuffer::
wd050_MonNick::
wd050:: ds PKMN_NAME_LENGTH +- 1
wd05a:: ds 12
wd066:: ds 10
@ -2998,7 +3001,8 @@ SECTION "WRAM 6", WRAMX, BANK [6]
w6_d000:: ds $400
w6_d400:: ds $200
w6_d600:: ds $600
w6_d600:: ds $200
w6_d800::
INCLUDE "sram.asm"