diff options
author | pikalaxalt <PikalaxALT@gmail.com> | 2016-03-27 12:47:28 -0400 |
---|---|---|
committer | pikalaxalt <PikalaxALT@gmail.com> | 2016-03-27 12:47:28 -0400 |
commit | 93e12d200300c7320640922fe6bcebe64f942eda (patch) | |
tree | 21868005ec792f7c60b70c4482bde8adc0dea636 /items/item_effects.asm | |
parent | 2650bcffad179be1a874bfaadccb0bb554d28096 (diff) |
Split up banks 1-3 of main.asm
Diffstat (limited to 'items/item_effects.asm')
-rw-r--r-- | items/item_effects.asm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/items/item_effects.asm b/items/item_effects.asm index aa6c8f795..fb8e030bc 100644 --- a/items/item_effects.asm +++ b/items/item_effects.asm @@ -338,11 +338,13 @@ endr ; 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. +; Uncomment the line below to fix this. ld b, a ld a, [EnemyMonStatus] and 1 << FRZ | SLP ld c, 10 jr nz, .addstatus + ; ld a, [EnemyMonStatus] and a ld c, 5 jr nz, .addstatus @@ -3315,3 +3317,5 @@ GetMthMoveOfCurrentMon: ; f969 add hl, bc ret ; f971 + +INCLUDE "items/pokeball_wobble.asm" |