mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-16 18:30:50 +12:00
Tweaks
Fixed the Rock issue (thanks frrfy) Changed the Slowbro text to reference a move it actually learns
This commit is contained in:
parent
dc439c36cf
commit
9a88543f19
|
@ -198,10 +198,10 @@ StartBattle:
|
|||
; OG: multiply b by 2 (making the mon more likely to run)
|
||||
;sla b
|
||||
; 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
|
||||
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
|
||||
; cap b at 255
|
||||
ld b, $ff
|
||||
|
|
|
@ -138,7 +138,7 @@ _CeruleanCityText6::
|
|||
|
||||
_CeruleanCityText_19730::
|
||||
text "OK, SLOWBRO!"
|
||||
line "Use SONICBOOM!"
|
||||
line "Use WATER GUN!"
|
||||
cont "Come on SLOWBRO,"
|
||||
cont "pay attention!"
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue