diff options
| author | JimB16 <f1@jimb.de> | 2015-09-28 03:33:29 +0200 |
|---|---|---|
| committer | JimB16 <f1@jimb.de> | 2015-09-28 03:33:29 +0200 |
| commit | e07180ff34dd67d05c4a81c18c84fb2880326e53 (patch) | |
| tree | 8b2e4dc8e8b7cdfe0dead3ef6da5b88844491c79 | |
| parent | df28646f6506d656af36942739f780b7ec05753c (diff) | |
first raw version to test this bug list
| -rw-r--r-- | Bugs-and-Glitches.md | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/Bugs-and-Glitches.md b/Bugs-and-Glitches.md new file mode 100644 index 0000000..f825484 --- /dev/null +++ b/Bugs-and-Glitches.md @@ -0,0 +1,50 @@ +###Source: +http://bulbapedia.bulbagarden.net/wiki/List_of_glitches_in_Generation_II + + +###Belly Drum effect error +**[battle/effect_commands.asm (BattleCommand95, 10158-10163)](../blob/master/battle/effect_commands.asm#L10158-10163)** +```asm +BattleCommand95: ; 37c1a +; bellydrum + call BattleCommand77 + ld a, [AttackMissed] + and a + jr nz, .asm_37c4f +``` + +###Catch rate errors +**[items/item_effects.asm (MasterBall/UltraBall/GreatBall/PokeBall/HeavyBall/LevelBall//LureBall/FastBall/FriendBall/MoonBall/LoveBall/ParkBall, 336-340)](../blob/master/items/item_effects.asm#L336-340)** +```asm +.statuscheck +; This routine is buggy. It was intended that SLP and FRZ provide a higher +; catch rate than BRN/PSN/PAR, which in turn provide a higher catch rate than +; no status effect at all. But instead, it makes BRN/PSN/PAR provide no +; benefit. +``` + +**[items/item_effects.asm (MoonBallMultiplier, 916-919)](../blob/master/items/item_effects.asm#L916-919)** +```asm +MoonBallMultiplier: +; This function is buggy. +; Intent: multiply catch rate by 4 if mon evolves with moon stone +; Reality: no boost +``` + +**[items/item_effects.asm (LoveBallMultiplier, 967-970)](../blob/master/items/item_effects.asm#L967-970)** +```asm +LoveBallMultiplier: +; This function is buggy. +; Intent: multiply catch rate by 8 if mons are of same species, different sex +; Reality: multiply catch rate by 8 if mons are of same species, same sex +``` + +**[items/item_effects.asm (FastBallMultiplier, 1032-1037)](../blob/master/items/item_effects.asm#L1032-1037)** +```asm +FastBallMultiplier: +; This function is buggy. +; Intent: multiply catch rate by 4 if enemy mon is in one of the three +; FleeMons tables. +; Reality: multiply catch rate by 4 if enemy mon is one of the first three in +; the first FleeMons table. +```
\ No newline at end of file |
