mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-09-17 02:30:50 +12:00

- Changed name lists - Made Overworld pink palette into purple palette - Changed gender selection options - Added Topaz's graphics (Enby Trainer) - Changed more or less every gender check in the game to account for enby option - Changed out Morty's palette on the trainer card to a more purple one to facilitate Topaz's graphics KNOWN ISSUES / THINGS TO CHANGE - Topaz's sprite does not currently render correctly on town map (check if this is a map issue or if it occasionally will pop up elsewhere as well) - Bag Palette is still green like the tutorial made it. Might change it to yellow or something later on.
42 lines
842 B
NASM
42 lines
842 B
NASM
DrawKrisPackGFX:
|
|
ld hl, PackFGFXPointers
|
|
add hl, de
|
|
add hl, de
|
|
ld a, [hli]
|
|
ld e, a
|
|
ld d, [hl]
|
|
ld hl, vTiles2 tile $50
|
|
lb bc, BANK(PackFGFX), 15
|
|
call Request2bpp
|
|
ret
|
|
|
|
PackFGFXPointers:
|
|
dw PackFGFX + (15 tiles) * 1 ; ITEM_POCKET
|
|
dw PackFGFX + (15 tiles) * 3 ; BALL_POCKET
|
|
dw PackFGFX + (15 tiles) * 0 ; KEY_ITEM_POCKET
|
|
dw PackFGFX + (15 tiles) * 2 ; TM_HM_POCKET
|
|
|
|
PackFGFX:
|
|
INCBIN "gfx/pack/pack_f.2bpp"
|
|
|
|
DrawEnbyPackGFX:
|
|
ld hl, PackNBGFXPointers
|
|
add hl, de
|
|
add hl, de
|
|
ld a, [hli]
|
|
ld e, a
|
|
ld d, [hl]
|
|
ld hl, vTiles2 tile $50
|
|
lb bc, BANK(PackNBGFX), 15
|
|
call Request2bpp
|
|
ret
|
|
|
|
PackNBGFXPointers:
|
|
dw PackNBGFX + (15 tiles) * 1 ; ITEM_POCKET
|
|
dw PackNBGFX + (15 tiles) * 3 ; BALL_POCKET
|
|
dw PackNBGFX + (15 tiles) * 0 ; KEY_ITEM_POCKET
|
|
dw PackNBGFX + (15 tiles) * 2 ; TM_HM_POCKET
|
|
|
|
PackNBGFX:
|
|
INCBIN "gfx/pack/pack_nb.2bpp"
|