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

This adds a ton of overworld sprites, some from KEP, others from SW97/99, for you all to mess around with. It also adds the prototype trainer sprites from SW99 to use with the old trainer classes, though some don't have modern GSC shading. Unfortunately, the SW99 trainer sprites need palfixing and my PC can't be fucked running it for some reason. Lots of potential here, particularly with making Mediums now use their distinct sprites, and having Channelers to fit into the mix. I'll be using these when fleshing out the Haunted House and Lavender Crypt. South Guy still doesn't have a name, so internally, they are called such. Green from KEP/TPP Anniversary Red has been imported too, because she's awesome like that. Yes this commit has the cat sprite. All rise for the best thing ever.
93 lines
1.7 KiB
NASM
93 lines
1.7 KiB
NASM
; Groups are defined in data/trainers/parties.asm.
|
|
|
|
TrainerGroups:
|
|
; entries correspond to trainer classes (see constants/trainer_constants.asm)
|
|
table_width 3, TrainerGroups
|
|
dba FalknerGroup
|
|
dba WhitneyGroup
|
|
dba BugsyGroup
|
|
dba MortyGroup
|
|
dba PryceGroup
|
|
dba JasmineGroup
|
|
dba ChuckGroup
|
|
dba ClairGroup
|
|
dba Rival1Group
|
|
dba PokemonProfGroup
|
|
dba WillGroup
|
|
dba PKMNTrainerGroup
|
|
dba BrunoGroup
|
|
dba KarenGroup
|
|
dba KogaGroup
|
|
dba ChampionGroup
|
|
dba BrockGroup
|
|
dba MistyGroup
|
|
dba LtSurgeGroup
|
|
dba ScientistGroup
|
|
dba ErikaGroup
|
|
dba YoungsterGroup
|
|
dba SchoolboyGroup
|
|
dba BirdKeeperGroup
|
|
dba LassGroup
|
|
dba JanineGroup
|
|
dba CooltrainerMGroup
|
|
dba CooltrainerFGroup
|
|
dba BeautyGroup
|
|
dba PokemaniacGroup
|
|
dba GruntMGroup
|
|
dba GentlemanGroup
|
|
dba SkierGroup
|
|
dba TeacherGroup
|
|
dba SabrinaGroup
|
|
dba BugCatcherGroup
|
|
dba FisherGroup
|
|
dba SwimmerMGroup
|
|
dba SwimmerFGroup
|
|
dba SailorGroup
|
|
dba SuperNerdGroup
|
|
dba Rival2Group
|
|
dba GuitaristGroup
|
|
dba HikerGroup
|
|
dba BikerGroup
|
|
dba BlaineGroup
|
|
dba BurglarGroup
|
|
dba FirebreatherGroup
|
|
dba JugglerGroup
|
|
dba BlackbeltGroup
|
|
dba ExecutiveMGroup
|
|
dba PsychicGroup
|
|
dba PicnickerGroup
|
|
dba CamperGroup
|
|
dba ExecutiveFGroup
|
|
dba SageGroup
|
|
dba MediumGroup
|
|
dba BoarderGroup
|
|
dba PokefanMGroup
|
|
dba KimonoGirlGroup
|
|
dba TwinsGroup
|
|
dba PokefanFGroup
|
|
dba RedGroup
|
|
dba BlueGroup
|
|
dba OfficerGroup
|
|
dba GruntFGroup
|
|
dba MysticalmanGroup
|
|
dba ChannelerGroup
|
|
dba CueBallGroup
|
|
dba EngineerGroup
|
|
dba RockerGroup
|
|
dba TamerGroup
|
|
dba FirefighterGroup
|
|
dba TeacherMGroup
|
|
dba PainterGroup
|
|
dba SoldierGroup
|
|
dba SportsmanGroup
|
|
dba AerofossilGroup
|
|
dba KabufossilGroup
|
|
dba WalkerGroup
|
|
dba LoreleiGroup
|
|
dba XXXGroup
|
|
dba AgathaGroup
|
|
dba Giovanni3Group
|
|
dba GreenGroup
|
|
dba KurtGroup
|
|
assert_table_length NUM_TRAINER_CLASSES
|