mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-09-16 18:20: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.
57 lines
1.1 KiB
NASM
57 lines
1.1 KiB
NASM
ChrisNameMenuHeader:
|
|
db MENU_BACKUP_TILES ; flags
|
|
menu_coords 0, 0, 10, TEXTBOX_Y - 1
|
|
dw .MaleNames
|
|
db 1 ; default option
|
|
db 0 ; ????
|
|
|
|
.MaleNames:
|
|
db STATICMENU_CURSOR | STATICMENU_PLACE_TITLE | STATICMENU_DISABLE_B ; flags
|
|
db 5 ; items
|
|
db "NEW NAME@"
|
|
MalePlayerNameArray:
|
|
db "ETHAN@"
|
|
db "GOLD@"
|
|
db "CHRIS@"
|
|
db "JIMMY@"
|
|
db 2 ; title indent
|
|
db " NAME @" ; title
|
|
|
|
KrisNameMenuHeader:
|
|
db MENU_BACKUP_TILES ; flags
|
|
menu_coords 0, 0, 10, TEXTBOX_Y - 1
|
|
dw .FemaleNames
|
|
db 1 ; default option
|
|
db 0 ; ????
|
|
|
|
.FemaleNames:
|
|
db STATICMENU_CURSOR | STATICMENU_PLACE_TITLE | STATICMENU_DISABLE_B ; flags
|
|
db 5 ; items
|
|
db "NEW NAME@"
|
|
FemalePlayerNameArray:
|
|
db "KRIS@"
|
|
db "MARINA@"
|
|
db "AMANDA@"
|
|
db "JODI@"
|
|
db 2 ; title indent
|
|
db " NAME @" ; title
|
|
|
|
EnbyNameMenuHeader:
|
|
db MENU_BACKUP_TILES ; flags
|
|
menu_coords 0, 0, 10, TEXTBOX_Y - 1
|
|
dw .OtherNames
|
|
db 1 ; ????
|
|
db 0 ; default option
|
|
|
|
.OtherNames:
|
|
db STATICMENU_CURSOR | STATICMENU_PLACE_TITLE | STATICMENU_DISABLE_B ; flags
|
|
db 5 ; items
|
|
db "NEW NAME@"
|
|
EnbyPlayerNameArray:
|
|
db "TOPAZ@"
|
|
db "SAM@"
|
|
db "CRYS@"
|
|
db "RAY@"
|
|
db 2 ; displacement
|
|
db " NAME @" ; title
|
|
|