Fix evolution bug

Caused by `base_stats.asm` not being in the same bank aa `evos_moves`.
This commit is contained in:
Llinos Evans 2023-05-02 21:59:08 +01:00
parent f9b7f5baef
commit 53e96553dd
2 changed files with 7 additions and 7 deletions

View file

@ -22,12 +22,12 @@ SetIshiharaTeam:
IshiharaTeam:
db EXEGGUTOR_A, 90
db RHYDON, 90
db KANGASKHAN, 90
db ONIX, 90
db PINSIR, 90
IF DEF(_DEBUG)
db FARFETCHD, 50
db MEOWTH, 50
db PIKACHU, 50
db DITTO, 50
db SCYTHER, 50
db SCYTHER, 50
ENDC
db -1 ; end

View file

@ -185,15 +185,15 @@ INCLUDE "engine/slots/game_corner_slots.asm"
SECTION "Battle Engine 7", ROMX
INCLUDE "data/moves/moves.asm"
INCLUDE "data/pokemon/base_stats.asm"
INCLUDE "data/pokemon/cries.asm"
INCLUDE "engine/battle/unused_stats_functions.asm"
INCLUDE "engine/battle/move_effects/heal.asm"
INCLUDE "engine/battle/move_effects/transform.asm"
INCLUDE "engine/battle/move_effects/reflect_light_screen.asm"
SECTION "Evos and Moves", ROMX
SECTION "Pokemon Data", ROMX
INCLUDE "data/pokemon/base_stats.asm"
INCLUDE "engine/pokemon/evos_moves.asm"
SECTION "Battle Core", ROMX