mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-10-21 22:37:58 +13: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.
21 lines
555 B
NASM
21 lines
555 B
NASM
ChrisStateSprites:
|
|
db PLAYER_NORMAL, SPRITE_CHRIS
|
|
db PLAYER_BIKE, SPRITE_CHRIS_BIKE
|
|
db PLAYER_SURF, SPRITE_SURF
|
|
db PLAYER_SURF_PIKA, SPRITE_SURFING_PIKACHU
|
|
db -1 ; end
|
|
|
|
KrisStateSprites:
|
|
db PLAYER_NORMAL, SPRITE_KRIS
|
|
db PLAYER_BIKE, SPRITE_KRIS_BIKE
|
|
db PLAYER_SURF, SPRITE_SURF
|
|
db PLAYER_SURF_PIKA, SPRITE_SURFING_PIKACHU
|
|
db -1 ; end
|
|
|
|
EnbyStateSprites:
|
|
db PLAYER_NORMAL, SPRITE_ENBY
|
|
db PLAYER_BIKE, SPRITE_ENBY_BIKE
|
|
db PLAYER_SURF, SPRITE_SURF
|
|
db PLAYER_SURF_PIKA, SPRITE_SURFING_PIKACHU
|
|
db -1 ; end
|
|
|