mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00
Fix evolution bug
Caused by `base_stats.asm` not being in the same bank aa `evos_moves`.
This commit is contained in:
parent
f9b7f5baef
commit
53e96553dd
|
@ -22,12 +22,12 @@ SetIshiharaTeam:
|
||||||
|
|
||||||
IshiharaTeam:
|
IshiharaTeam:
|
||||||
db EXEGGUTOR_A, 90
|
db EXEGGUTOR_A, 90
|
||||||
db RHYDON, 90
|
db ONIX, 90
|
||||||
db KANGASKHAN, 90
|
db PINSIR, 90
|
||||||
IF DEF(_DEBUG)
|
IF DEF(_DEBUG)
|
||||||
db FARFETCHD, 50
|
db DITTO, 50
|
||||||
db MEOWTH, 50
|
db SCYTHER, 50
|
||||||
db PIKACHU, 50
|
db SCYTHER, 50
|
||||||
ENDC
|
ENDC
|
||||||
db -1 ; end
|
db -1 ; end
|
||||||
|
|
||||||
|
|
4
main.asm
4
main.asm
|
@ -185,15 +185,15 @@ INCLUDE "engine/slots/game_corner_slots.asm"
|
||||||
SECTION "Battle Engine 7", ROMX
|
SECTION "Battle Engine 7", ROMX
|
||||||
|
|
||||||
INCLUDE "data/moves/moves.asm"
|
INCLUDE "data/moves/moves.asm"
|
||||||
INCLUDE "data/pokemon/base_stats.asm"
|
|
||||||
INCLUDE "data/pokemon/cries.asm"
|
INCLUDE "data/pokemon/cries.asm"
|
||||||
INCLUDE "engine/battle/unused_stats_functions.asm"
|
INCLUDE "engine/battle/unused_stats_functions.asm"
|
||||||
INCLUDE "engine/battle/move_effects/heal.asm"
|
INCLUDE "engine/battle/move_effects/heal.asm"
|
||||||
INCLUDE "engine/battle/move_effects/transform.asm"
|
INCLUDE "engine/battle/move_effects/transform.asm"
|
||||||
INCLUDE "engine/battle/move_effects/reflect_light_screen.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"
|
INCLUDE "engine/pokemon/evos_moves.asm"
|
||||||
|
|
||||||
SECTION "Battle Core", ROMX
|
SECTION "Battle Core", ROMX
|
||||||
|
|
Loading…
Reference in a new issue