Fixed the Rock issue (thanks frrfy)
Changed the Slowbro text to reference a move it actually learns
This commit is contained in:
Llinos Evans 2023-05-19 15:48:02 +01:00
parent dc439c36cf
commit 9a88543f19
2 changed files with 3 additions and 3 deletions

View file

@ -198,10 +198,10 @@ StartBattle:
; OG: multiply b by 2 (making the mon more likely to run) ; OG: multiply b by 2 (making the mon more likely to run)
;sla b ;sla b
; KEP: multiply b by 1.5x and add to a, making it more likely to run, but not as much as vanilla. ; KEP: multiply b by 1.5x and add to a, making it more likely to run, but not as much as vanilla.
ld b, a ; load b into a - need this so add will work, add is for a only. ld a, b ; load b into a - need this so add will work, add is for a only.
srl b ; divide b by 2 srl b ; divide b by 2
add a, b ; add b to a add a, b ; add b to a
ld a, b ; load a into b again to go to compareWithRandomValue ld b, a ; load a into b again to go to compareWithRandomValue
jr nc, .compareWithRandomValue jr nc, .compareWithRandomValue
; cap b at 255 ; cap b at 255
ld b, $ff ld b, $ff

View file

@ -138,7 +138,7 @@ _CeruleanCityText6::
_CeruleanCityText_19730:: _CeruleanCityText_19730::
text "OK, SLOWBRO!" text "OK, SLOWBRO!"
line "Use SONICBOOM!" line "Use WATER GUN!"
cont "Come on SLOWBRO," cont "Come on SLOWBRO,"
cont "pay attention!" cont "pay attention!"
done done