jep-hack/engine/events/fishing_gfx.asm
Zeta_Null b3a3e27906 Initial giant enby Commit
- 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.
2023-09-11 11:26:46 -04:00

49 lines
707 B
NASM

LoadFishingGFX:
ldh a, [rVBK]
push af
ld a, $1
ldh [rVBK], a
ld de, FishingGFX
ld a, [wPlayerGender]
and a ; MALE
jr z, .got_gender
ld de, KrisFishingGFX
dec a ; FEMALE
jr z, .got_gender
ld de, EnbyFishingGFX
.got_gender
ld hl, vTiles0 tile $02
call .LoadGFX
ld hl, vTiles0 tile $06
call .LoadGFX
ld hl, vTiles0 tile $0a
call .LoadGFX
ld hl, vTiles0 tile $fc
call .LoadGFX
pop af
ldh [rVBK], a
ret
.LoadGFX:
lb bc, BANK(FishingGFX), 2
push de
call Get2bpp
pop de
ld hl, 2 tiles
add hl, de
ld d, h
ld e, l
ret
FishingGFX:
INCBIN "gfx/overworld/chris_fish.2bpp"
KrisFishingGFX:
INCBIN "gfx/overworld/kris_fish.2bpp"
EnbyFishingGFX:
INCBIN "gfx/overworld/enby_fish.2bpp"