mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00

- Fixed a bug where the Elite 4 wouldn't use Full Restores. Apparently the game only allows one item per trainer. - Gave Oak and Chief custom AI found from proto assets (then changed to be less ass) - Small amount of balancing - Minor text fixes - Figured out roughly how the current high-level AI works (Stat boosting moves are only used sometimes on the first turn, Recover is only used sometimes when below half health, otherwise just attack with a move that isn't ineffective. More testing needed for stat lowering moves and things like Barrier)
60 lines
1.5 KiB
NASM
60 lines
1.5 KiB
NASM
TrainerAIPointers:
|
|
table_width 3, TrainerAIPointers
|
|
; one entry per trainer class
|
|
; first byte, number of times (per Pokémon) it can occur
|
|
; next two bytes, pointer to AI subroutine for trainer class
|
|
; subroutines are defined in engine/battle/trainer_ai.asm
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 3, JugglerAI ; juggler
|
|
dbw 3, GenericAI
|
|
dbw 3, GenericAI
|
|
dbw 2, BlackbeltAI ; blackbelt
|
|
dbw 3, GenericAI ; rival1
|
|
dbw 2, OakAI
|
|
dbw 3, ChiefAI ; chief
|
|
dbw 3, GenericAI
|
|
dbw 1, GiovanniAI ; giovanni
|
|
dbw 3, GenericAI
|
|
dbw 2, CooltrainerMAI ; cooltrainerm
|
|
dbw 1, CooltrainerFAI ; cooltrainerf
|
|
dbw 1, BrunoAI ; bruno
|
|
dbw 5, BrockAI ; brock
|
|
dbw 2, MistyAI ; misty
|
|
dbw 1, LtSurgeAI ; surge
|
|
dbw 1, ErikaAI ; erika
|
|
dbw 2, KogaAI ; koga
|
|
dbw 2, BlaineAI ; blaine
|
|
dbw 1, SabrinaAI ; sabrina
|
|
dbw 3, GenericAI
|
|
dbw 2, Rival2AI ; rival2
|
|
dbw 3, Rival3AI ; rival3
|
|
dbw 1, LoreleiAI ; lorelei
|
|
dbw 3, GenericAI
|
|
dbw 1, AgathaAI ; agatha
|
|
dbw 2, LanceAI ; lance
|
|
dbw 3, GenericAI ; Yujirou
|
|
dbw 3, GenericAI ; Student
|
|
dbw 3, GenericAI ; Firefighter
|
|
dbw 2, BlackbeltAI ; Koichi
|
|
dbw 2, BlackbeltAI ; Jack
|
|
dbw 2, GenericAI ; Jessie & James
|
|
assert_table_length NUM_TRAINERS
|