diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-13 11:10:03 -0500 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-13 11:10:03 -0500 |
| commit | b88572fbccecc8d125fe8a50365751f0530d1a9a (patch) | |
| tree | 46a733a0ad7259689b9b5577f109751f34f42956 /engine/pikachu/pikachu_status.asm | |
| parent | Mention YELLMONS.GB in the readme (diff) | |
| download | pokeyellow-b88572fbccecc8d125fe8a50365751f0530d1a9a.tar.gz pokeyellow-b88572fbccecc8d125fe8a50365751f0530d1a9a.tar.xz pokeyellow-b88572fbccecc8d125fe8a50365751f0530d1a9a.zip | |
Add constants for player and rival starters
Diffstat (limited to 'engine/pikachu/pikachu_status.asm')
| -rwxr-xr-x | engine/pikachu/pikachu_status.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/pikachu/pikachu_status.asm b/engine/pikachu/pikachu_status.asm index c73d3b3f..5fc92ead 100755 --- a/engine/pikachu/pikachu_status.asm +++ b/engine/pikachu/pikachu_status.asm @@ -9,7 +9,7 @@ IsStarterPikachuInOurParty:: push hl inc a jr z, .noPlayerPikachu - cp PIKACHU + 1 + cp STARTER_PIKACHU + 1 jr nz, .curMonNotPlayerPikachu ld h, d ld l, e @@ -79,7 +79,7 @@ asm_fce21: ld a, [wWhichPokemon] call AddNTimes ld a, [hl] - cp PIKACHU + cp STARTER_PIKACHU jr nz, .notPlayerPikachu ld bc, wPartyMon1OTID - wPartyMon1 add hl, bc @@ -189,7 +189,7 @@ IsSurfingPikachuInThePlayersParty:: push hl inc a jr z, .noSurfingPlayerPikachu - cp PIKACHU+1 + cp STARTER_PIKACHU + 1 jr nz, .curMonNotSurfingPlayerPikachu ld h, d ld l, e |
