mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-10-20 13:57:58 +13:00

This adds Route 50 to the game, as well as Jacky, albeit without the gate or house that you can warp to within. I decided that the game house will be where Shinjuku Jacky hangs out this time! He'll battle the player and give them uhhh idfk you figure it out Also I don't know what to call West City. It's a rather sea-blueish colour, sort of like duck egg blue. Sort of a Pacific Teal, right? I need another gay person to give colour ideas.
58 lines
800 B
NASM
58 lines
800 B
NASM
; Used by GetMobileOTTrainerClass
|
|
|
|
MaleTrainers:
|
|
db BURGLAR
|
|
db YOUNGSTER
|
|
db SCHOOLBOY
|
|
db BIRD_KEEPER
|
|
db POKEMANIAC
|
|
db GENTLEMAN
|
|
db BUG_CATCHER
|
|
db FISHER
|
|
db SWIMMERM
|
|
db SAILOR
|
|
db SUPER_NERD
|
|
db GUITARIST
|
|
db HIKER
|
|
db FIREBREATHER
|
|
db BLACKBELT_T
|
|
db PSYCHIC_T
|
|
db CAMPER
|
|
db COOLTRAINERM
|
|
db BOARDER
|
|
db JUGGLER
|
|
db POKEFANM
|
|
db OFFICER
|
|
db SAGE
|
|
db BIKER
|
|
db SCIENTIST
|
|
db MYSTICALMAN ; required when adding more trainers - imo though, they transcend gender
|
|
db CUE_BALL
|
|
db ENGINEER
|
|
db ROCKER
|
|
db TAMER
|
|
db FIREFIGHTER
|
|
db TEACHERM
|
|
db SOLDIER
|
|
db SPORTSMAN
|
|
db AEROFOSSIL
|
|
db ELDER
|
|
db JACK
|
|
.End
|
|
|
|
FemaleTrainers:
|
|
db MEDIUM
|
|
db LASS
|
|
db BEAUTY
|
|
db SKIER
|
|
db TEACHER
|
|
db SWIMMERF
|
|
db PICNICKER
|
|
db KIMONO_GIRL
|
|
db POKEFANF
|
|
db COOLTRAINERF
|
|
db CHANNELER
|
|
db PAINTER
|
|
db KABUFOSSIL
|
|
.End
|