aboutsummaryrefslogtreecommitdiffstats
path: root/engine/debug
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-11-13 11:10:03 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2020-11-13 11:10:03 -0500
commitb88572fbccecc8d125fe8a50365751f0530d1a9a (patch)
tree46a733a0ad7259689b9b5577f109751f34f42956 /engine/debug
parentMention YELLMONS.GB in the readme (diff)
downloadpokeyellow-b88572fbccecc8d125fe8a50365751f0530d1a9a.tar.gz
pokeyellow-b88572fbccecc8d125fe8a50365751f0530d1a9a.tar.xz
pokeyellow-b88572fbccecc8d125fe8a50365751f0530d1a9a.zip
Add constants for player and rival starters
Diffstat (limited to 'engine/debug')
-rw-r--r--engine/debug/debug_party.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/debug/debug_party.asm b/engine/debug/debug_party.asm
index 637482eb..67a27710 100644
--- a/engine/debug/debug_party.asm
+++ b/engine/debug/debug_party.asm
@@ -17,7 +17,7 @@ DebugTeam:
db SNORLAX, 80
db PERSIAN, 80
db JIGGLYPUFF, 15
- db PIKACHU, 5
+ db STARTER_PIKACHU, 5
db -1 ; end
DebugStart:
@@ -75,13 +75,13 @@ IF DEF(_DEBUG)
call DebugSetPokedexEntries
SetEvent EVENT_GOT_POKEDEX
- ; Player chose Pikachu.
+ ; Rival chose Jolteon.
ld hl, wRivalStarter
- ld a, 1
+ ld a, RIVAL_STARTER_JOLTEON
ld [hli], a
ld a, NUM_POKEMON
ld [hli], a ; hl = wUnknownDebugByte
- ld a, PIKACHU
+ ld a, STARTER_PIKACHU
ld [hl], a ; hl = wPlayerStarter
; Give max money.