mirror of https://github.com/pret/pokecrystal.git
MON_PKRUS -> MON_POKERUS
This commit is contained in:
parent
a41dac9a2f
commit
1f9e688b76
|
@ -89,7 +89,7 @@ MON_SPC_EXP rw
|
||||||
MON_DVS rw
|
MON_DVS rw
|
||||||
MON_PP rb NUM_MOVES
|
MON_PP rb NUM_MOVES
|
||||||
MON_HAPPINESS rb
|
MON_HAPPINESS rb
|
||||||
MON_PKRUS rb
|
MON_POKERUS rb
|
||||||
MON_CAUGHTDATA rw
|
MON_CAUGHTDATA rw
|
||||||
rsset MON_CAUGHTDATA
|
rsset MON_CAUGHTDATA
|
||||||
MON_CAUGHTTIME rb
|
MON_CAUGHTTIME rb
|
||||||
|
|
|
@ -3865,7 +3865,7 @@ InitBattleMon:
|
||||||
ld bc, MON_DVS - MON_ID
|
ld bc, MON_DVS - MON_ID
|
||||||
add hl, bc
|
add hl, bc
|
||||||
ld de, wBattleMonDVs
|
ld de, wBattleMonDVs
|
||||||
ld bc, MON_PKRUS - MON_DVS
|
ld bc, MON_POKERUS - MON_DVS
|
||||||
call CopyBytes
|
call CopyBytes
|
||||||
inc hl
|
inc hl
|
||||||
inc hl
|
inc hl
|
||||||
|
@ -3951,7 +3951,7 @@ InitEnemyMon:
|
||||||
ld bc, MON_DVS - MON_ID
|
ld bc, MON_DVS - MON_ID
|
||||||
add hl, bc
|
add hl, bc
|
||||||
ld de, wEnemyMonDVs
|
ld de, wEnemyMonDVs
|
||||||
ld bc, MON_PKRUS - MON_DVS
|
ld bc, MON_POKERUS - MON_DVS
|
||||||
call CopyBytes
|
call CopyBytes
|
||||||
inc hl
|
inc hl
|
||||||
inc hl
|
inc hl
|
||||||
|
@ -7034,7 +7034,7 @@ GiveExperiencePoints:
|
||||||
.no_carry_stat_exp
|
.no_carry_stat_exp
|
||||||
push hl
|
push hl
|
||||||
push bc
|
push bc
|
||||||
ld a, MON_PKRUS
|
ld a, MON_POKERUS
|
||||||
call GetPartyParamLocation
|
call GetPartyParamLocation
|
||||||
ld a, [hl]
|
ld a, [hl]
|
||||||
and a
|
and a
|
||||||
|
|
Loading…
Reference in New Issue