mirror of https://github.com/pret/pokecrystal.git
Correct Moon Ball bug documentation (#1133)
This commit is contained in:
parent
1febb75bf9
commit
0ebea8cfe1
|
@ -1100,10 +1100,16 @@ This can occur if your party and current PC box are both full when you start the
|
||||||
|
|
||||||
### Moon Ball does not boost catch rate
|
### Moon Ball does not boost catch rate
|
||||||
|
|
||||||
|
The Moon Ball checks the wrong memory address for the wrong item ID, so no Pokémon can receive the boost.
|
||||||
|
|
||||||
**Fix:** Edit `MoonBallMultiplier` in [engine/items/item_effects.asm](https://github.com/pret/pokecrystal/blob/master/engine/items/item_effects.asm):
|
**Fix:** Edit `MoonBallMultiplier` in [engine/items/item_effects.asm](https://github.com/pret/pokecrystal/blob/master/engine/items/item_effects.asm):
|
||||||
|
|
||||||
```diff
|
```diff
|
||||||
-; BUG: Moon Ball does not boost catch rate (see docs/bugs_and_glitches.md)
|
-; BUG: Moon Ball does not boost catch rate (see docs/bugs_and_glitches.md)
|
||||||
|
inc hl
|
||||||
|
- inc hl
|
||||||
|
- inc hl
|
||||||
|
|
||||||
push bc
|
push bc
|
||||||
ld a, BANK("Evolutions and Attacks")
|
ld a, BANK("Evolutions and Attacks")
|
||||||
call GetFarByte
|
call GetFarByte
|
||||||
|
@ -1113,6 +1119,8 @@ This can occur if your party and current PC box are both full when you start the
|
||||||
ret nz
|
ret nz
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Note that this fix only accounts for Pokémon that evolve via Moon Stone as their first evolution method. However, that is sufficient to cover all Pokémon in the game that can evolve by Moon Stone.
|
||||||
|
|
||||||
|
|
||||||
### Love Ball boosts catch rate for the wrong gender
|
### Love Ball boosts catch rate for the wrong gender
|
||||||
|
|
||||||
|
|
|
@ -913,11 +913,11 @@ MoonBallMultiplier:
|
||||||
pop bc
|
pop bc
|
||||||
ret nz
|
ret nz
|
||||||
|
|
||||||
|
; BUG: Moon Ball does not boost catch rate (see docs/bugs_and_glitches.md)
|
||||||
inc hl
|
inc hl
|
||||||
inc hl
|
inc hl
|
||||||
inc hl
|
inc hl
|
||||||
|
|
||||||
; BUG: Moon Ball does not boost catch rate (see docs/bugs_and_glitches.md)
|
|
||||||
push bc
|
push bc
|
||||||
ld a, BANK("Evolutions and Attacks")
|
ld a, BANK("Evolutions and Attacks")
|
||||||
call GetFarByte
|
call GetFarByte
|
||||||
|
|
Loading…
Reference in New Issue