mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-09-16 18:20:50 +12:00

This adds a readme with credits so far. Make sure to keep this updated so everyone knows what is and isn't done! We also get the Running Shoes feature from the tutorial, finally making debugging bearable given how laggy Crystal's overworld can be at times. Oh, and Munchlax.
24 lines
671 B
NASM
24 lines
671 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 PLAYER_RUN, SPRITE_CHRIS_RUN
|
|
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 PLAYER_RUN, SPRITE_KRIS_RUN
|
|
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 PLAYER_RUN, SPRITE_TOPAZ_RUN
|
|
db -1 ; end
|
|
|